8 lines
251 B
TypeScript
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 {};
|