rhino-editor
Version:
A custom element wrapped rich text editor
14 lines (13 loc) • 366 B
TypeScript
import { BaseEvent } from "./base-event.js";
/**
* Fires any time a user pastes into the editor
*/
export declare class RhinoBlurEvent extends BaseEvent {
static eventName: "rhino-blur";
constructor(options?: EventInit | undefined);
}
declare global {
interface GlobalEventHandlersEventMap {
[RhinoBlurEvent.eventName]: RhinoBlurEvent;
}
}