d.ts for InputNumber

pull/310/head
cagataycivici 2020-04-18 15:20:49 +03:00
parent a1f5f219c2
commit ed2e7001f6
3 changed files with 29 additions and 0 deletions

1
exports/inputnumber.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export * from './components/inputnumber/InputNumber';

2
exports/inputnumber.js Normal file
View File

@ -0,0 +1,2 @@
'use strict';
module.exports = require('./components/inputnumber/InputNumber.vue');

View File

@ -0,0 +1,26 @@
import Vue from 'vue';
export declare class InputNumber extends Vue {
value?: number;
format?: boolean;
showButtons?: boolean;
buttonLayout?: string;
incrementButtonClass?: string;
decrementButtonClass?: string;
incrementButtonIcon?: string;
decrementButtonIcon?: string;
locale?: string;
localeMatcher?: string;
mode?: string;
prefix?: string;
suffix?: string;
currency?: string;
currencyDisplay?: string;
useGrouping?: boolean;
minFractionDigits?: number;
maxFractionDigits?: number;
min?: number;
max?: number;
step?: number;
$emit(eventName: string, value: number | Event): this;
}