UNPKG

@odata2ts/odata-query-objects

Version:

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

8 lines (7 loc) 375 B
import { QParam } from "../QParam"; import { formatLiteralParam } from "../UrlParamHelper"; import { UrlParamValueParser } from "../UrlParamModel"; export declare class QBooleanParam<ConvertedType = boolean> extends QParam<boolean, ConvertedType> { protected getUrlConformValue: typeof formatLiteralParam; protected parseValueFromUrl: UrlParamValueParser<boolean>; }