UNPKG
@walts81/linq-ts
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Typescript/Javascript LINQ implementation library
github.com/walts81/linq-ts
walts81/linq-ts
@walts81/linq-ts
/
lib
/
remove.d.ts
7 lines
(6 loc)
•
202 B
TypeScript
View Raw
1
2
3
4
5
6
7
declare
global
{
interface
Array
<T> {
remove
(
this
:
Array
<T>,
item
: T,
mutateArray
?:
boolean
): T[]; } }
export
declare
function
remove<T>(
this
: T[],
item
: T,
mutateArray
?:
boolean
): T[];