import { IEditorCommonConfig } from "../common"; /** * visual editor * * @export * @interface IEditorBrowserConfig */ export interface IEditorBrowserConfig extends IEditorCommonConfig { isPeer: boolean; useDefaultKeyBindings?: boolean; /** * The mounting point into the application */ element: HTMLElement; }