mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
5 lines
134 B
TypeScript
5 lines
134 B
TypeScript
export interface Command<T = any> {
|
|
execute(): Promise<Record<string, unknown> | boolean | null | Error>;
|
|
validate?(): boolean;
|
|
}
|