//#region src/array/drop.d.ts /** * Drops the first n elements from an array * @param array The array to process * @param n The number of elements to drop * @returns A new array without the first n elements * @example * drop([1, 2, 3, 4, 5], 2); // [3, 4, 5] * drop([1, 2, 3], 5); // [] */ declare function drop(array: T[], n?: number): T[]; //#endregion export { drop }; //# sourceMappingURL=drop.d.mts.map