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