1 | import { EdmTypeSameConvertersUri, EdmTypeShared } from '../../odata-common';
|
2 | declare type UriConverterMapping = {
|
3 | [key in EdmTypeSameConvertersUri]: (value: any) => string;
|
4 | };
|
5 |
|
6 |
|
7 |
|
8 | export declare const uriConvertersCommon: UriConverterMapping;
|
9 |
|
10 |
|
11 |
|
12 | export declare function convertToUriForEdmString(value: any): string;
|
13 |
|
14 |
|
15 |
|
16 |
|
17 | export interface UriConverter {
|
18 | convertToUriFormat(value: any, edmType: EdmTypeShared<'v2'> | EdmTypeShared<'v4'>): string;
|
19 | }
|
20 | export {};
|
21 |
|
\ | No newline at end of file |