devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
24 lines (22 loc) • 760 B
TypeScript
/**
* DevExtreme (data/odata/utils.d.ts)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
/**
* The EdmLiteral is an object for working with primitive data types from the OData's Abstract Type System that are not supported in JavaScript.
*/
export class EdmLiteral {
constructor(value: string);
/**
* Gets the EdmLiteral's value converted to a string.
*/
valueOf(): string;
}
/**
* Contains built-in OData type converters (for String, Int32, Int64, Boolean, Single, Decimal, and Guid) and allows you to register a custom type converter.
*/
export var keyConverters: any;