UNPKG
geninq
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
A JavaScript version of the Linq library for Generators
github.com/PaulPopat/geninq
PaulPopat/geninq
geninq
/
dist
/
functions
/
geninq.d.ts
11 lines
(10 loc)
•
226 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
declare
global
{
/** * Builds a generator from an array. *
@returns
A generator with the same type as the array. */
interface
Array
<T> {
geninq
():
Generator
<T,
void
,
unknown
>; } }
export
{};