6 lines
77 B
TypeScript
Raw Normal View History

2023-11-15 20:35:05 -05:00
export interface ICommand
2023-03-03 15:23:46 +00:00
{
2023-11-15 20:35:05 -05:00
uuid: string;
cmd: () => Promise<any>;
}