6 lines
77 B
TypeScript
6 lines
77 B
TypeScript
export interface ICommand
|
|
{
|
|
uuid: string;
|
|
cmd: () => Promise<any>;
|
|
}
|