-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.ts
34 lines (28 loc) · 1.01 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// LINQ to TypeScript
// Copyright (c) Alexandre Rogozine
// MIT License
// https://github.com/arogozine/LinqToTypeScript/blob/master/LICENSE
// API design adapted from,
// LINQ: .NET Language-Integrated Query
// API is part of .NET Core foundational libraries (CoreFX)
// MIT License
// https://github.com/dotnet/corefx/blob/master/LICENSE.TXT
// API Documentation adapted from,
// LINQ API Documentation
// Create Commons Attribution 4.0 International
// https://github.com/dotnet/docs/blob/master/LICENSE
// Shared Interfaces
export * from "./types"
// Types and Stuff
export * from "./shared"
export { ArrayEnumerable } from "./sync/ArrayEnumerable"
// Main Initializer
export * from "./initializer/initializer"
// Static Methods
export * from "./sync/static"
export * from "./async/static"
export * from "./parallel/static"
// Type Check
export { isEnumerable } from "./sync/isEnumerable"
export { isParallelEnumerable } from "./parallel/isParallelEnumerable"
export { isAsyncEnumerable } from "./async/isAsyncEnumerable"