9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import type { Command } from "./Command";
|
|
import type { CommandType } from "./CommandType";
|
|
|
|
interface ClearCommand extends Command {
|
|
|
|
type: CommandType.Clear
|
|
}
|
|
|
|
export type { ClearCommand }; |