DefinitelyTyped/types/array.from/polyfill.d.ts
ExE Boss 192a1b5b5b feat: Add array.from (#39055)
* feat: Add `array.from`

* docs(array.from): Add TSDoc comments

* docs(array.from): Improve TSDoc
2019-10-16 14:06:06 -07:00

8 lines
185 B
TypeScript

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