DefinitelyTyped/types/array.from/polyfill.d.ts

8 lines
185 B
TypeScript
Raw Permalink Normal View History

import ArrayFrom = require('./implementation');
/**
* Gets the optimal `Array.from` implementation to use.
*/
declare function getPolyfill(): typeof ArrayFrom;
export = getPolyfill;