UNPKG

ts-flex-query

Version:
9 lines (8 loc) 341 B
import { Expression } from '../../core/expression'; import { DataType } from '../../types/data-type'; export declare class ODataCollectionExpression implements Expression { readonly name: string; readonly dataType: DataType; constructor(name: string); } export declare function oDataCollection<T>(name: string): Expression<T[]>;