ray-lab/packages/renderer-virtual/source/command/Command.ts

16 lines
280 B
TypeScript

import type { CommandTypeSet } from "./CommandType";
interface Command {
/**
* Define the type of command.
*/
type: CommandTypeSet;
/**
* Unique identification of the command for feedback.
*/
id?: string | number;
}
export type { Command };