mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
9 lines
341 B
TypeScript
9 lines
341 B
TypeScript
|
|
/**
|
||
|
|
* Creates an array from an array-like or iterable object.
|
||
|
|
* @param iterable An array-like or iterable object to convert to an array.
|
||
|
|
* @param mapfn A mapping function to call on every element of the array.
|
||
|
|
* @param thisArg Value of `this` used to invoke the mapfn.
|
||
|
|
*/
|
||
|
|
declare const ArrayFrom: typeof Array.from;
|
||
|
|
export = ArrayFrom;
|