6 lines
183 B
TypeScript
6 lines
183 B
TypeScript
import type { RenderCommand } from "./RenderCommand";
|
|
import type { ClearCommand } from "./ClearCommand";
|
|
|
|
type CommandSet = RenderCommand | ClearCommand;
|
|
|
|
export type { CommandSet }; |