/** * drops specific amount of elements of the provided array starting at the beginning * @example * drop(2, [1, 2, 3, 4]) * // returns [3, 4] */ export default function drop(count: number, arr: T[]): T[]; //# sourceMappingURL=drop.d.ts.map