adminjs
Version:
Admin panel for apps written in node.js
13 lines (12 loc) • 457 B
TypeScript
import { BuildInActions } from './action.interface.js';
export * from './delete/delete-action.js';
export * from './show/show-action.js';
export * from './new/new-action.js';
export * from './edit/edit-action.js';
export * from './search/search-action.js';
export * from './list/list-action.js';
export * from './bulk-delete/bulk-delete-action.js';
export * from './action.interface.js';
export declare const ACTIONS: {
[key in BuildInActions]: any;
};