ray-lab/packages/renderer-virtual/source/command/ClearCommand.ts

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 };