UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

32 lines (30 loc) 1.07 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 */ import * as VueType from "vue"; import ValidationGroup, { IOptions } from "devextreme/ui/validation_group"; declare type AccessibleOptions = Pick<IOptions, "elementAttr" | "height" | "onDisposing" | "onInitialized" | "onOptionChanged" | "width">; interface DxValidationGroup extends AccessibleOptions { readonly instance?: ValidationGroup; } declare const DxValidationGroup: VueType.VueConstructor<{ instance: ValidationGroup; } & { elementAttr: any; height: string | number | Function; onDisposing: Function; onInitialized: Function; onOptionChanged: Function; width: string | number | Function; } & VueType.default>; export default DxValidationGroup; export { DxValidationGroup };