Skip to content

Commit

Permalink
Fix type definitions for push and pull props
Browse files Browse the repository at this point in the history
  • Loading branch information
krystianparma committed Aug 10, 2018
1 parent 93f598a commit f87069d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ declare module 'react-grid-system' {
xl?: number
}
type Push = {
xs?: boolean,
sm?: boolean,
md?: boolean,
lg?: boolean,
xl?: boolean
xs?: number,
sm?: number,
md?: number,
lg?: number,
xl?: number
}
type Pull = {
xs?: boolean,
sm?: boolean,
md?: boolean,
lg?: boolean,
xl?: boolean
xs?: number,
sm?: number,
md?: number,
lg?: number,
xl?: number
}
type ColProps = React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & {
debug?: boolean,
Expand Down

0 comments on commit f87069d

Please sign in to comment.