Interface ExpressBeansOptions

interface ExpressBeansOptions {
    listen: boolean;
    onError?: ((err) => void);
    onInitialized?: (() => void);
    port: number;
    routerBeans: any[];
}

Properties

listen: boolean
onError?: ((err) => void)

Type declaration

    • (err): void
    • Parameters

      • err: Error

      Returns void

onInitialized?: (() => void)

Type declaration

    • (): void
    • Returns void

port: number
routerBeans: any[]