@odata2ts/odata-query-objects
Version:
Q-Objects are the magic sauce for the odata-query-builder and allow for renaming and type conversion
9 lines (8 loc) • 423 B
TypeScript
import { QParam } from "../QParam";
import { formatLiteralParam } from "../UrlParamHelper";
import { UrlParamValueParser } from "../UrlParamModel";
export declare const parseValueFromUrl: UrlParamValueParser<string>;
export declare class QBigNumberParam<ConvertedType = string> extends QParam<string, ConvertedType> {
getUrlConformValue: typeof formatLiteralParam;
parseValueFromUrl: UrlParamValueParser<string>;
}