expresser
Version:
A ready to use Node.js web app wrapper, built on top of Express.
16 lines (15 loc) • 386 B
TypeScript
export interface LoadOptions {
handlers: any;
specs?: any;
filename?: string;
version?: string;
}
export declare class Routes {
private static _instance;
static get Instance(): Routes;
load: (options: LoadOptions) => void;
loadSwagger: (options: LoadOptions) => void;
private castParameter;
}
declare const _default: Routes;
export default _default;