UNPKG

@walts81/linq-ts

Version:

Typescript/Javascript LINQ implementation library

7 lines (6 loc) 218 B
declare global { interface Array<T> { removeAt(this: Array<T>, index: number, mutateArray?: boolean): T[]; } } export declare function removeAt<T>(this: T[], index: number, mutateArray?: boolean): T[];