UNPKG

227 BTypeScriptView Raw
1import * as express from 'express';
2export declare function serve(config: {
3 port: number;
4 path?: string;
5}): Promise<void>;
6export declare function apply(app: express.Application, config: {
7 path?: string;
8}): void;