UNPKG

nowjs-core

Version:

NowCanDo Javascript Core [nowjs-core] is a library written by TypeScript code maintains under Apache 2.0 licence

7 lines (6 loc) 202 B
import { IParallelQueryable } from './IParallelQueryable'; import { IQueryable } from './IQuerable'; export interface ILinqProvider<T> { linq(): IQueryable<T>; plinq(): IParallelQueryable<T>; }