UNPKG

neura-express-app

Version:

Basic express application starter with some common utilities.

8 lines (7 loc) 196 B
export interface INeuraAppConfig { appName: string; port: number; logHttpRequests: boolean; bodyParserEnabled: boolean; } export declare const getAppConfig: () => INeuraAppConfig;