devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
45 lines (42 loc) • 1.57 kB
TypeScript
/**
* DevExtreme (ui/recurrence_editor.d.ts)
* Version: 19.2.6
* Build date: Thu Jan 30 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import Editor, {
EditorOptions
} from './editor/editor';
/** Warning! This type is used for internal purposes. Do not import it directly. */
export interface dxRecurrenceEditorOptions extends EditorOptions<dxRecurrenceEditor> {
/**
* @docid dxRecurrenceEditorOptions.value
* @type string
* @default null
* @fires dxRecurrenceEditorOptions.onValueChanged
* @prevFileNamespace DevExpress.ui
* @public
*/
value?: string;
}
/** A base class for editors. */
export default class dxRecurrenceEditor extends Editor {
constructor(element: Element, options?: dxRecurrenceEditorOptions)
constructor(element: JQuery, options?: dxRecurrenceEditorOptions)
}
declare global {
interface JQuery {
dxRecurrenceEditor(): JQuery;
dxRecurrenceEditor(options: "instance"): dxRecurrenceEditor;
dxRecurrenceEditor(options: string): any;
dxRecurrenceEditor(options: string, ...params: any[]): any;
dxRecurrenceEditor(options: dxRecurrenceEditorOptions): JQuery;
}
}
/** Warning! This type is used for internal purposes. Do not import it directly. */
export type Options = dxRecurrenceEditorOptions;
/** @deprecated use Options instead */
/** Warning! This type is used for internal purposes. Do not import it directly. */
export type IOptions = dxRecurrenceEditorOptions;