Created Rating.d.ts

pull/12/head
mertsincan 2019-05-29 13:19:32 +03:00
parent d5a662e3c1
commit 2cc99e7466
1 changed files with 11 additions and 0 deletions

11
src/components/rating/Rating.d.ts vendored Normal file
View File

@ -0,0 +1,11 @@
import Vue from 'vue';
export declare class Rating extends Vue {
value?: number;
disabled?: boolean;
readonly?: boolean;
stars?: number;
cancel?: boolean;
$emit(eventName: 'input', value: any): this;
$emit(eventName: 'change', e: { originalEvent: Event, value: any }): this;
}