| Server IP : 13.235.167.51 / Your IP : 216.73.217.116 Web Server : Apache System : Linux machinox-server 6.17.0-1013-aws #13~24.04.1-Ubuntu SMP Fri Apr 24 21:36:58 UTC 2026 aarch64 User : root ( 0) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/control.machinox.in/node_modules/quill/core/ |
Upload File : |
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;