1 | /**
|
2 | * Checks whether a collection name (e.g. "Map" or "Set") has a native polyfill
|
3 | * that is safe to be used.
|
4 | */
|
5 | declare function _shouldPolyfillES6Collection(collectionName: string): boolean;
|
6 |
|
7 | declare namespace _shouldPolyfillES6Collection {}
|
8 |
|
9 | export = _shouldPolyfillES6Collection;
|