devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
37 lines (33 loc) • 1.52 kB
TypeScript
/**
* DevExtreme (ui/recurrence_editor.d.ts)
* Version: 22.1.9
* Build date: Tue Apr 18 2023
*
* Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import Editor, {
EditorOptions,
} from './editor/editor';
/**
* @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution.
*/
export interface dxRecurrenceEditorOptions extends EditorOptions<dxRecurrenceEditor> {
/**
* Specifies the UI component's value.
*/
value?: string;
}
/**
* A base class for editors.
*/
export default class dxRecurrenceEditor extends Editor<dxRecurrenceEditorOptions> { }
/**
* @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution.
*/
export type Properties = dxRecurrenceEditorOptions;
/**
* @deprecated use Properties instead
* @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution.
*/
export type Options = dxRecurrenceEditorOptions;