ray-lab/engine/virtual-renderer/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 };