Repository URL to install this package:
|
Version:
2.0.0-beta.20 ▾
|
/// <reference path="../node_modules/@types/node/index.d.ts" />
/// <reference types="node" />
import { Application } from 'express';
declare const app: import("../node_modules/@types/express-serve-static-core").Express;
declare function decorateApp(expressApp?: Application): void;
declare function setupApp(expressApp?: Application): void;
/**
* We export the listener as it will be handy for our development hot reloader,
* or for exposing a general extension layer for application customisations.
*/
declare function withKiller(expressApp?: Application): {
listen: () => any;
};
declare function start(expressApp?: Application): import("http").Server;
export { start, withKiller, decorateApp, setupApp, app };