element/types/input-number.d.ts
2017-10-18 18:38:23 +08:00

37 lines
759 B
TypeScript

import { ElementUIComponent } from './component'
export type InputNumberSize = 'large' | 'small'
/** InputNumber Component */
export declare class ElInputNumber extends ElementUIComponent {
/** Binding value */
value: number
/** The minimum allowed value */
min: number
/** The maximum allowed value */
max: number
/** Incremental step */
step: number
/** Size of the component */
size: InputNumberSize
/** Whether the component is disabled */
disabled: boolean
/** Whether to enable the control buttons */
controls: boolean
/** Debounce delay when typing, in milliseconds */
debounce: number
/** Position of the control buttons */
controlsPosition: string
/** Same as name in native input */
name: string
}