UNPKG

@zextras/carbonio-shell-ui

Version:

The Zextras Carbonio web client

7 lines (6 loc) 211 B
export interface Action { label: string; icon?: string; execute(...args: unknown[]): unknown; } export type ActionFactory<TContext, TAction extends Action = Action> = (context: TContext) => TAction;