@ribajs/core
Version:
Core module of Riba.js
11 lines (10 loc) • 349 B
TypeScript
import { Binder } from "../binder.js";
export declare class NoDragBinder extends Binder<boolean, HTMLElement> {
static key: string;
enable: boolean;
_onDrag(event: Event): void;
onDrag: (event: Event) => void;
routine(el: HTMLElement, enable: boolean): void;
bind(el: HTMLElement): void;
unbind(el: HTMLElement): void;
}