UNPKG

@ribajs/core

Version:

Core module of Riba.js

14 lines (13 loc) 390 B
import { Binder } from "../binder.js"; import { View } from "../view.js"; export declare class IfBinder extends Binder<boolean> { static key: string; static block: boolean; priority: number; attached: boolean; nested?: View; bind(el: HTMLUnknownElement): void; unbind(): void; routine(el: HTMLElement, value: boolean): void; update(models: any): void; }