devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
69 lines (67 loc) • 2.55 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 Toast, { IOptions } from "devextreme/ui/toast";
declare type AccessibleOptions = Pick<IOptions, "accessKey" | "animation" | "closeOnClick" | "closeOnOutsideClick" | "closeOnSwipe" | "contentTemplate" | "deferRendering" | "displayTime" | "elementAttr" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "maxHeight" | "maxWidth" | "message" | "minHeight" | "minWidth" | "onContentReady" | "onDisposing" | "onHidden" | "onHiding" | "onInitialized" | "onOptionChanged" | "onShowing" | "onShown" | "position" | "rtlEnabled" | "shading" | "shadingColor" | "tabIndex" | "type" | "visible" | "width">;
interface DxToast extends AccessibleOptions {
readonly instance?: Toast;
}
declare const DxToast: VueType.VueConstructor<{
instance: Toast;
} & {
accessKey: string;
animation: any;
closeOnClick: boolean;
closeOnOutsideClick: boolean | Function;
closeOnSwipe: boolean;
contentTemplate: unknown;
deferRendering: boolean;
displayTime: number;
elementAttr: any;
focusStateEnabled: boolean;
height: string | number | Function;
hint: string;
hoverStateEnabled: boolean;
maxHeight: string | number | Function;
maxWidth: string | number | Function;
message: string;
minHeight: string | number | Function;
minWidth: string | number | Function;
onContentReady: Function;
onDisposing: Function;
onHidden: Function;
onHiding: Function;
onInitialized: Function;
onOptionChanged: Function;
onShowing: Function;
onShown: Function;
position: any;
rtlEnabled: boolean;
shading: boolean;
shadingColor: string;
tabIndex: number;
type: string;
visible: boolean;
width: string | number | Function;
} & VueType.default>;
declare const DxAnimation: any;
declare const DxAt: any;
declare const DxBoundaryOffset: any;
declare const DxCollision: any;
declare const DxHide: any;
declare const DxMy: any;
declare const DxOffset: any;
declare const DxPosition: any;
declare const DxShow: any;
export default DxToast;
export { DxToast, DxAnimation, DxAt, DxBoundaryOffset, DxCollision, DxHide, DxMy, DxOffset, DxPosition, DxShow };