UNPKG

@odata2ts/odata-query-objects

Version:

Q-Objects are the magic sauce for the odata-query-builder and allow for renaming and type conversion

7 lines (6 loc) 304 B
import { QParam } from "../QParam"; import { formatLiteralParam, parseLiteral } from "../UrlParamHelper"; export declare class QTimeOfDayParam<ConvertedType = string> extends QParam<string, ConvertedType> { getUrlConformValue: typeof formatLiteralParam; parseValueFromUrl: typeof parseLiteral; }