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