UNPKG

admin-bro

Version:
36 lines (35 loc) 729 B
/** * JSON representation of an {@link Action} * @see Action */ export default interface ActionJSON { /** * Unique action name */ name: string; /** * Type of an action */ actionType: 'record' | 'resource' | Array<'record' | 'resource'>; /** * Action icon */ icon?: string; /** * Action label - visible on the frontend */ label: string; /** * Guarding message */ guard?: string; /** * If action should have a filter (for resource actions) */ showFilter: boolean; /** * Action component. When set to false action will be invoked immediately after clicking it, * to put in another words: tere wont be an action view */ component?: string | false | null; }