import type { RenderCommand } from "./RenderCommand"; import type { ClearCommand } from "./ClearCommand"; type CommandSet = RenderCommand | ClearCommand; export type { CommandSet };