UNPKG

twoway

Version:

Simple Zero dependency 2way databinding library

17 lines (14 loc) 297 B
import Store from "../Store/index"; export default interface ElementInterface { element: HTMLElement; model: string; value: any; store: Store; /** * Update a value * * @param {*} value * @memberof ElementInterface */ update(value: any): void; };