@ribajs/core
Version:
Core module of Riba.js
13 lines (12 loc) • 383 B
TypeScript
import { View } from "../view.js";
import { Binder } from "../binder.js";
export declare class EachStarBinder extends Binder<any[], HTMLElement> {
static key: string;
static block: boolean;
priority: number;
iterated: View[];
bind(el: HTMLElement): void;
unbind(): void;
routine(el: HTMLElement, collection: any[]): void;
update(models: any): void;
}