8 lines
117 B
TypeScript
8 lines
117 B
TypeScript
|
|
export type ReceivedMessage = {
|
|
command: string;
|
|
collection: Array<any>;
|
|
subcommand: string;
|
|
value: any;
|
|
};
|