This commit is contained in:
Sebastian Seedorf
2020-11-16 10:01:58 +01:00
parent 7fbc95f86a
commit 2629d1e8e9
55 changed files with 4904 additions and 0 deletions

7
out/polyfill.d.ts vendored Normal file
View File

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