devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
50 lines (48 loc) • 1.86 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 RecurrenceEditor, { IOptions } from "devextreme/ui/recurrence_editor";
declare type AccessibleOptions = Pick<IOptions, "accessKey" | "activeStateEnabled" | "disabled" | "elementAttr" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "isValid" | "onContentReady" | "onDisposing" | "onInitialized" | "onOptionChanged" | "onValueChanged" | "readOnly" | "rtlEnabled" | "tabIndex" | "validationError" | "validationErrors" | "validationMessageMode" | "validationStatus" | "value" | "visible" | "width">;
interface DxRecurrenceEditor extends AccessibleOptions {
readonly instance?: RecurrenceEditor;
}
declare const DxRecurrenceEditor: VueType.VueConstructor<{
instance: RecurrenceEditor;
} & {
accessKey: string;
activeStateEnabled: boolean;
disabled: boolean;
elementAttr: any;
focusStateEnabled: boolean;
height: string | number | Function;
hint: string;
hoverStateEnabled: boolean;
isValid: boolean;
onContentReady: Function;
onDisposing: Function;
onInitialized: Function;
onOptionChanged: Function;
onValueChanged: Function;
readOnly: boolean;
rtlEnabled: boolean;
tabIndex: number;
validationError: any;
validationErrors: unknown[];
validationMessageMode: string;
validationStatus: string;
value: string;
visible: boolean;
width: string | number | Function;
} & VueType.default>;
export default DxRecurrenceEditor;
export { DxRecurrenceEditor };