This commit is contained in:
Sebastian Seedorf
2020-11-16 13:02:45 +01:00
parent 9250c71c51
commit 110e6f74e8
4 changed files with 13 additions and 4 deletions

6
out/polyfill.d.ts vendored
View File

@@ -1,5 +1,9 @@
import { RequestHandler } from 'express';
import { PolyfillFeatureList } from 'polyfill-library';
export declare type PolyfillFeatureList = {
[featureName: string]: {
flags?: string[];
};
};
export declare type PolyfillOptions = {
minify: boolean;
unknown: 'polyfill' | 'ignore';