/** * returns the specified amount of the provided array elements starting from the end * @example * takeLast(2, ['a', 'b', 'c', 'd']) * // returns ['c', 'd'] */ export default function takeLast(count: number, arr: T[]): T[]; //# sourceMappingURL=takeLast.d.ts.map