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