yo-vscode/type-script-helper/src/ReceivedMessage.ts
2025-06-06 14:37:45 -07:00

8 lines
117 B
TypeScript

export type ReceivedMessage = {
command: string;
collection: Array<any>;
subcommand: string;
value: any;
};