UNPKG
@odata/parser
Version:
latest (0.2.14)
0.2.14
0.2.12
0.2.11
0.2.10
0.2.9
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.1.46
0.1.44
0.1.43
0.1.42
0.1.41
0.1.40
0.1.39
0.1.38
0.1.37
0.1.36
0.1.35
0.1.34
0.1.33
0.1.32
OData(V4) Parser
github.com/Soontao/odata-v4-parser
Soontao/odata-v4-parser
@odata/parser
/
lib
/
builder
/
types.d.ts
9 lines
(8 loc)
•
283 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Edm
}
from
'@odata/metadata'
;
export
type
ODataVersion
=
'v2'
|
'v4'
;
/** * *
@param
value primitive literal value *
@returns
the string representation */
export
declare
function
convertPrimitiveValueToString
(
value
:
Edm
.
PrimitiveTypeValue
,
version
?:
ODataVersion
):
any
;