@ribajs/core
Version:
Core module of Riba.js
11 lines (10 loc) • 374 B
TypeScript
import { eventHandlerFunction } from "../types/index.js";
import { Binder } from "../binder.js";
export declare class OnEventBinder extends Binder<eventHandlerFunction, HTMLElement> {
static key: string;
function: boolean;
priority: number;
handler?: any;
unbind(el: HTMLElement): void;
routine(el: HTMLElement, value: eventHandlerFunction): void;
}