ray-lab/engine/virtual-renderer/command/CommandSet.ts

6 lines
183 B
TypeScript

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