rhino-editor
Version:
A custom element wrapped rich text editor
14 lines (13 loc) • 520 B
TypeScript
import { BaseEvent } from "./base-event.js";
/**
* Fires any time LitElement calls the "updated" function. This is a good event for tracking changes to the editor as it includes both the host Web Component and the underlying TipTap instance.
*/
export declare class RhinoUpdateEvent extends BaseEvent {
static eventName: "rhino-update";
constructor(options?: EventInit | undefined);
}
declare global {
interface GlobalEventHandlersEventMap {
[RhinoUpdateEvent.eventName]: RhinoUpdateEvent;
}
}