UNPKG

actionhero

Version:

The reusable, scalable, and quick node.js API server for stateless and stateful applications

16 lines (13 loc) 336 B
export interface ActionheroConfigInterface { [key: string]: Record<string, unknown>; } export type PluginConfigRecord = { path: string; actions?: boolean; tasks?: boolean; initializers?: boolean; servers?: boolean; public?: boolean; cli?: boolean; }; export type PluginConfig = { [name: string]: PluginConfigRecord };