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-all.d.ts
7 lines
(6 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
declare
global
{
interface
Array
<T> {
removeAll
(
this
:
Array
<T>,
expression
?:
(
item
: T,
index
?:
number
) =>
boolean
,
mutateArray
?:
boolean
): T[]; } }
export
declare
function
removeAll<T>(
this
: T[],
expression
?:
(
item
: T,
index
?:
number
) =>
boolean
,
mutateArray
?:
boolean
): T[];