UNPKG

ts-odata-client

Version:
9 lines (8 loc) 296 B
/** * Represents a literal value, the provided type may be different than that of the runtime type (e.g., Guid instead of a string). */ export declare class Literal { value: unknown; literalType?: string | undefined; constructor(value: unknown, literalType?: string | undefined); }