You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
973 B
18 lines
973 B
/**
|
|
* 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 { IEditor } from './components/Editor';
|
|
declare const isValidKey: (key: string) => boolean;
|
|
declare const bindHandlers: (initEvent: Event, listeners: any, editor: any) => void;
|
|
declare const bindModelHandlers: (ctx: IEditor, editor: any) => void;
|
|
declare const initEditor: (initEvent: Event, ctx: IEditor, editor: any) => void;
|
|
declare const uuid: (prefix: string) => string;
|
|
declare const isTextarea: (element: Element | null) => element is HTMLTextAreaElement;
|
|
declare const mergePlugins: (initPlugins: string | string[], inputPlugins?: string | string[] | undefined) => string[];
|
|
declare const isNullOrUndefined: (value: any) => value is null | undefined;
|
|
export { bindHandlers, bindModelHandlers, initEditor, isValidKey, uuid, isTextarea, mergePlugins, isNullOrUndefined };
|