import type { Command } from "./Command"; import type { CommandType } from "./CommandType"; interface ClearCommand extends Command { type: CommandType.Clear } export type { ClearCommand };