@muban/muban
Version:
Writing components for server-rendered HTML
5 lines (4 loc) • 330 B
TypeScript
import type { Ref } from '@vue/reactivity';
import type { BindingsHelpers } from '../bindings.types';
export declare function checkedBinding(target: HTMLInputElement, model: Ref<any>, bindingHelpers: BindingsHelpers): () => void;
export declare function checkedValueBinding(target: HTMLInputElement, model: Ref<any>): () => void;