interface ICommandAction {
    handleAction(...data: any): Promise<any>;
}

export type { ICommandAction };
