Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/react-server / dist / app.d.ts
Size: Mime:
/// <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 };