|
import type { MeltEvent } from '../types.js'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type GeneralEventListener<E = Event> = (evt: E) => unknown; |
|
|
|
|
|
|
|
export declare function addEventListener<E extends keyof HTMLElementEventMap>(target: Window, event: E, handler: (this: Window, ev: HTMLElementEventMap[E]) => unknown, options?: boolean | AddEventListenerOptions): VoidFunction; |
|
export declare function addEventListener<E extends keyof HTMLElementEventMap>(target: Document, event: E, handler: (this: Document, ev: HTMLElementEventMap[E]) => unknown, options?: boolean | AddEventListenerOptions): VoidFunction; |
|
export declare function addEventListener<E extends keyof HTMLElementEventMap>(target: EventTarget, event: E, handler: GeneralEventListener<HTMLElementEventMap[E]>, options?: boolean | AddEventListenerOptions): VoidFunction; |
|
|
|
|
|
|
|
export declare function addMeltEventListener<E extends keyof HTMLElementEventMap>(target: Window, event: E, handler: (this: Window, ev: HTMLElementEventMap[E]) => unknown, options?: boolean | AddEventListenerOptions): VoidFunction; |
|
export declare function addMeltEventListener<E extends keyof HTMLElementEventMap>(target: Document, event: E, handler: (this: Document, ev: HTMLElementEventMap[E]) => unknown, options?: boolean | AddEventListenerOptions): VoidFunction; |
|
export declare function addMeltEventListener<E extends keyof HTMLElementEventMap>(target: EventTarget, event: E, handler: GeneralEventListener<HTMLElementEventMap[E]>, options?: boolean | AddEventListenerOptions): VoidFunction; |
|
export declare function dispatchMeltEvent<E extends keyof HTMLElementEventMap>(originalEvent: HTMLElementEventMap[E]): MeltEvent<HTMLElementEventMap[E]> | null; |
|
export declare function withMelt<E extends keyof HTMLElementEventMap>(handler: (event: HTMLElementEventMap[E]) => void): (event: HTMLElementEventMap[E]) => void; |
|
|