UNPKG

@icebro/actionhero

Version:

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

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