From 046c34a41e761a4b3d1daddc560ddff953b5ccaf Mon Sep 17 00:00:00 2001 From: mertsincan Date: Tue, 13 Oct 2020 16:45:08 +0300 Subject: [PATCH] Update InputNumber.d.ts --- src/components/inputnumber/InputNumber.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/inputnumber/InputNumber.d.ts b/src/components/inputnumber/InputNumber.d.ts index 55ec1c497..0a857ac99 100755 --- a/src/components/inputnumber/InputNumber.d.ts +++ b/src/components/inputnumber/InputNumber.d.ts @@ -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; }