Files
node-pkg-express-utils/out/polyfill.d.ts
Sebastian Seedorf 2629d1e8e9 inital #2
2020-11-16 10:01:58 +01:00

8 lines
251 B
TypeScript

import { RequestHandler } from 'express';
import { PolyfillOptions } from 'polyfill-library';
declare function getRouter(opts?: Partial<PolyfillOptions>): RequestHandler;
export declare const Polyfill: {
getRouter: typeof getRouter;
};
export {};