UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

34 lines (32 loc) 1.18 kB
/*! * devextreme-vue * Version: 19.2.6 * Build date: Thu Jan 30 2020 * * Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/devextreme-vue */ export declare function uppercaseFirst(value: string): string; export declare function lowercaseFirst(value: string): string; export declare function camelize(value: string): string; export declare function toComparable(value: any): any; export declare function isEqual(value1: any, value2: any): boolean; export declare function forEachChildNode(el: Node, callback: (child: ReturnType<Node["childNodes"]["item"]>) => void): void; export declare function allKeysAreEqual(obj1: object, obj2: object): boolean; export declare function getOptionInfo(name: string): IOptionInfo | ICollectionOptionInfo; interface IOptionInfo { isCollection: false; name: string; fullName: string; } interface ICollectionOptionInfo { isCollection: true; name: string; fullName: string; index: number; } export {};