/** * returns the provided array without the specified index element * @example * removeAt(2, [1, 2, 3, 4, 5]) * // returns [1, 2, 4, 5] */ export default function removeAt(index: number, arr: T[]): T[]; //# sourceMappingURL=removeAt.d.ts.map