vasille
Version:
The first Developer eXperience Orientated front-end framework (core library).
12 lines (11 loc) • 496 B
TypeScript
import { Binding } from "./binding.js";
import type { INode } from "../../../node/node.js";
import type { IValue } from "../../../core/ivalue.js";
export declare class StaticClassBinding extends Binding<boolean> {
private current;
constructor(node: INode<Node, Element, object>, name: string, value: IValue<boolean>);
}
export declare class DynamicalClassBinding extends Binding<string> {
private current;
constructor(node: INode<Node, Element, object>, value: IValue<string>);
}