UNPKG

@paperbits/common

Version:
16 lines (14 loc) 304 B
export interface ICommand { /** * Title shown in UI element representing the command. */ title: string; /** * CSS class used to display the icon. */ iconClass?: string; /** * Command action delegate. */ action: () => Promise<void>; }