UNPKG

@progress/kendo-react-editor

Version:
50 lines (49 loc) 1.63 kB
import { InsertLinkDialog as LinkDialog, InsertLinkDialogProps as LinkDialogProps } from './insertLink'; import { InsertImageDialog as ImageDialog, InsertImageDialogProps as ImageDialogProps } from './insertImage'; import { ViewHtmlDialog as ViewHtmlDialogX, ViewHtmlDialogProps as ViewHtmlDialogPropsX } from './viewHtml'; import { FindAndReplaceDialog as FindAndReplaceDialogX, FindAndReplaceDialogProps as FindAndReplaceDialogPropsX } from './FindReplace'; /** * Represents a wrapping namespace for the dialog components and props of the Editor. */ export declare namespace EditorDialogs { /** * The InsertLinkDialog component. */ class InsertLinkDialog extends LinkDialog { } /** * The props for the InsertLinkDialog component. */ interface InsertLinkDialogProps extends LinkDialogProps { } /** * The InsertImageDialog component. */ class InsertImageDialog extends ImageDialog { } /** * The props for the InsertImageDialog component. */ interface InsertImageDialogProps extends ImageDialogProps { } /** * The ViewHtmlDialog component. */ class ViewHtmlDialog extends ViewHtmlDialogX { } /** * The props for the ViewHtmlDialog component. */ interface ViewHtmlDialogProps extends ViewHtmlDialogPropsX { } /** * The FindAndReplaceDialog component. */ class FindAndReplaceDialog extends FindAndReplaceDialogX { } /** * The props for the FindAndReplaceDialog component. */ interface FindAndReplaceDialogProps extends FindAndReplaceDialogPropsX { } }