array.from.d.ts 236 B

123456
  1. /**
  2. * Creates an array from an iterable object.
  3. * @param iterable An iterable object to convert to an array.
  4. */
  5. export default function arrayFrom<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
  6. //# sourceMappingURL=array.from.d.ts.map