import { drop } from './drop'; import { entries } from './entries'; import { flatten } from './flatten'; import { flatMap } from './flatMap'; import { fromPairs } from './fromPairs'; import { head } from './head'; import { last } from './last'; import { remove } from './remove'; import { tail } from './tail'; import { uniq } from './uniq'; import { zipObject } from './zipObject'; import { zip } from './zip'; import { unzip } from './unzip'; import { forEach } from './forEach'; import { invert } from './invert'; import { mapKeys } from './mapKeys'; import { mapValues } from './mapValues'; import { omit } from './omit'; import { pick } from './pick'; import { zipWithIndex } from './zipWithIndex'; export declare type Shallow = T | T[]; export declare type Deep = T | T[] | T[][] | T[][][] | T[][][][] | T[][][][][] | T[][][][][][] | T[][][][][][][] | T[][][][][][][][] | T[][][][][][][][][] | T[][][][][][][][][][] | T[][][][][][][][][][][] | T[][][][][][][][][][][][]; declare global { interface Array { drop: typeof drop; flatten: typeof flatten; flatMap: typeof flatMap; fromPairs: typeof fromPairs; head: typeof head; last: typeof last; remove: typeof remove; tail: typeof tail; uniq: typeof uniq; unzip: typeof unzip; zip: typeof zip; zipObject: typeof zipObject; zipWithIndex: typeof zipWithIndex; } interface Object { entries: typeof entries; forEach: typeof forEach; invert: typeof invert; mapKeys: typeof mapKeys; mapValues: typeof mapValues; omit: typeof omit; pick: typeof pick; } }