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

15 lines (12 loc) 295 B
interface RatingProps { modelValue?: number; disabled?: boolean; readonly?: boolean; stars?: number; cancel?: boolean; } declare class Rating { $props: RatingProps; $emit(eventName: 'change', e: { originalEvent: Event, value: any }): this; } export default Rating;