UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

30 lines (29 loc) 747 B
/** * DevExtreme (core/guid.d.ts) * Version: 19.2.6 * Build date: Thu Jan 30 2020 * * Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ /** The Guid is an object used to generate and contain a GUID. */ export default class Guid { constructor(); constructor(value: string); /** * @docid Guidmethods.toString * @publicName toString() * @return string * @prevFileNamespace DevExpress.core * @public */ toString(): string; /** * @docid Guidmethods.valueOf * @publicName valueOf() * @return string * @prevFileNamespace DevExpress.core * @public */ valueOf(): string; }