devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
41 lines (39 loc) • 1.36 kB
TypeScript
/*!
* 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 Resizable, { IOptions } from "devextreme/ui/resizable";
declare type AccessibleOptions = Pick<IOptions, "elementAttr" | "handles" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onDisposing" | "onInitialized" | "onOptionChanged" | "onResize" | "onResizeEnd" | "onResizeStart" | "rtlEnabled" | "width">;
interface DxResizable extends AccessibleOptions {
readonly instance?: Resizable;
}
declare const DxResizable: VueType.VueConstructor<{
instance: Resizable;
} & {
elementAttr: any;
handles: string;
height: string | number | Function;
maxHeight: number;
maxWidth: number;
minHeight: number;
minWidth: number;
onDisposing: Function;
onInitialized: Function;
onOptionChanged: Function;
onResize: Function;
onResizeEnd: Function;
onResizeStart: Function;
rtlEnabled: boolean;
width: string | number | Function;
} & VueType.default>;
export default DxResizable;
export { DxResizable };