5 lines
75 B
TypeScript
Raw Normal View History

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