Skip to content

Commit

Permalink
fix(types): AtInputNumberProps
Browse files Browse the repository at this point in the history
  • Loading branch information
limichange authored Sep 4, 2018
1 parent a1f70b8 commit cc8a9bb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions @types/input-number.d.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
import { MouseEvent, ComponentClass } from 'react'

export interface AtInputNumberProps {
min: number
min?: number

max: number
max?: number

step: number
step?: number

size: string
size?: string

value: number
value?: number

width: number
width?: number

disabled: boolean
disabled?: boolean

onChange: (value: number) => void
onChange?: (value: number) => void
}

declare const AtInputNumber: ComponentClass<AtInputNumberProps>
Expand Down

0 comments on commit cc8a9bb

Please sign in to comment.