Update InputNumber.d.ts

pull/553/head
mertsincan 2020-10-13 16:45:08 +03:00
parent 7d6e55e7a9
commit 046c34a41e
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,8 @@ export declare class InputNumber extends Vue {
min?: number;
max?: number;
step?: number;
inputStyle?: any;
inputClass?: string;
$emit(eventName: string, value: number | Event): this;
$emit(eventName: 'input', e: {originalEvent: Event, value: any}): this;
}