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) 333 B
import { QParam } from "../QParam"; import { formatParamWithQuotes, parseWithQuotes } from "../UrlParamHelper"; export declare class QStringParam<ConvertedType = string> extends QParam<string, ConvertedType> { protected getUrlConformValue: typeof formatParamWithQuotes; protected parseValueFromUrl: typeof parseWithQuotes; }