UNPKG

386 BTypeScriptView Raw
1export interface LoadOptions {
2 handlers: any;
3 specs?: any;
4 filename?: string;
5 version?: string;
6}
7export declare class Routes {
8 private static _instance;
9 static get Instance(): Routes;
10 load: (options: LoadOptions) => void;
11 loadSwagger: (options: LoadOptions) => void;
12 private castParameter;
13}
14declare const _default: Routes;
15export default _default;