primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue)
16 lines (14 loc) • 447 B
TypeScript
import Vue from 'vue';
declare class Checkbox extends Vue {
value?: null;
modelValue?: null;
binary?: boolean;
trueValue?: any;
falseValue?: any;
$emit(eventName: 'click', event: Event): this;
$emit(eventName: 'input', value: any): this;
$emit(eventName: 'change', event: Event): this;
$emit(eventName: 'focus', event: Event): this;
$emit(eventName: 'blur', event: Event): this;
}
export default Checkbox;