Server/project/src/models/spt/utils/ICommand.ts
2023-11-15 21:12:40 -05:00

6 lines
77 B
TypeScript

export interface ICommand
{
uuid: string;
cmd: () => Promise<any>;
}