UNPKG

ts-odata-client

Version:
10 lines (9 loc) 261 B
import type { FieldsFor } from "./FieldsForType"; /** * Represnets a reference to a field (instead of a literal value). */ export declare class FieldReference<T> { field: FieldsFor<T>; constructor(field: FieldsFor<T>); toString(): FieldsFor<T>; }