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