devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
43 lines (41 loc) • 1.52 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 SlideOutView, { IOptions } from "devextreme/ui/slide_out_view";
declare type AccessibleOptions = Pick<IOptions, "activeStateEnabled" | "contentTemplate" | "disabled" | "elementAttr" | "height" | "hint" | "hoverStateEnabled" | "menuPosition" | "menuTemplate" | "menuVisible" | "onDisposing" | "onInitialized" | "onOptionChanged" | "rtlEnabled" | "swipeEnabled" | "visible" | "width">;
interface DxSlideOutView extends AccessibleOptions {
readonly instance?: SlideOutView;
}
declare const DxSlideOutView: VueType.VueConstructor<{
instance: SlideOutView;
} & {
activeStateEnabled: boolean;
contentTemplate: unknown;
disabled: boolean;
elementAttr: any;
height: string | number | Function;
hint: string;
hoverStateEnabled: boolean;
menuPosition: string;
menuTemplate: unknown;
menuVisible: boolean;
onDisposing: Function;
onInitialized: Function;
onOptionChanged: Function;
rtlEnabled: boolean;
swipeEnabled: boolean;
visible: boolean;
width: string | number | Function;
} & VueType.default>;
export default DxSlideOutView;
export { DxSlideOutView };