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