UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

20 lines (17 loc) 461 B
interface CheckboxProps { value?: any; modelValue?: any; binary?: boolean; class?: string; style?: any; trueValue?: any; falseValue?: any; } declare class Checkbox { $props: CheckboxProps; $emit(eventName: 'update:page', value: any): this; $emit(eventName: 'click', event: Event): this; $emit(eventName: 'change', event: Event): this; $emit(eventName: 'input', value: boolean): this; } export default Checkbox;