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.
33 lines
1.4 KiB
33 lines
1.4 KiB
import { EventEmitter } from 'eventemitter3'; |
|
declare class Emitter extends EventEmitter<string> { |
|
static events: { |
|
readonly EDITOR_CHANGE: "editor-change"; |
|
readonly SCROLL_BEFORE_UPDATE: "scroll-before-update"; |
|
readonly SCROLL_BLOT_MOUNT: "scroll-blot-mount"; |
|
readonly SCROLL_BLOT_UNMOUNT: "scroll-blot-unmount"; |
|
readonly SCROLL_OPTIMIZE: "scroll-optimize"; |
|
readonly SCROLL_UPDATE: "scroll-update"; |
|
readonly SCROLL_EMBED_UPDATE: "scroll-embed-update"; |
|
readonly SELECTION_CHANGE: "selection-change"; |
|
readonly TEXT_CHANGE: "text-change"; |
|
readonly COMPOSITION_BEFORE_START: "composition-before-start"; |
|
readonly COMPOSITION_START: "composition-start"; |
|
readonly COMPOSITION_BEFORE_END: "composition-before-end"; |
|
readonly COMPOSITION_END: "composition-end"; |
|
}; |
|
static sources: { |
|
readonly API: "api"; |
|
readonly SILENT: "silent"; |
|
readonly USER: "user"; |
|
}; |
|
protected domListeners: Record<string, { |
|
node: Node; |
|
handler: Function; |
|
}[]>; |
|
constructor(); |
|
emit(...args: unknown[]): boolean; |
|
handleDOM(event: Event, ...args: unknown[]): void; |
|
listenDOM(eventName: string, node: Node, handler: EventListener): void; |
|
} |
|
export type EmitterSource = (typeof Emitter.sources)[keyof typeof Emitter.sources]; |
|
export default Emitter;
|
|
|