UNPKG

@tinymce/tinymce-vue

Version:

Official TinyMCE Vue 3 Component

20 lines (19 loc) 1.27 kB
/** * Copyright (c) 2018-present, Ephox, Inc. * * This source code is licensed under the Apache 2 license found in the * LICENSE file in the root directory of this source tree. * */ import { Ref, SetupContext } from 'vue'; import { IPropTypes } from './components/EditorPropTypes'; import { Editor as TinyMCEEditor, EditorEvent } from 'tinymce'; declare const isValidKey: (key: string) => boolean; declare const bindHandlers: (initEvent: EditorEvent<any>, listeners: Record<string, any>, editor: TinyMCEEditor) => void; declare const bindModelHandlers: (props: IPropTypes, ctx: SetupContext, editor: TinyMCEEditor, modelValue: Ref<any>) => void; declare const initEditor: (initEvent: EditorEvent<any>, props: IPropTypes, ctx: SetupContext, editor: TinyMCEEditor, modelValue: Ref<any>, content: () => string) => void; declare const uuid: (prefix: string) => string; declare const isTextarea: (element: Element | null) => element is HTMLTextAreaElement; declare const mergePlugins: (initPlugins: string | string[] | undefined, inputPlugins?: string | string[]) => string[]; declare const isNullOrUndefined: (value: any) => value is null | undefined; export { bindHandlers, bindModelHandlers, initEditor, isValidKey, uuid, isTextarea, mergePlugins, isNullOrUndefined };