Skip to content

Commit

Permalink
fix(Responsive): fix types in typings (Semantic-Org#2633)
Browse files Browse the repository at this point in the history
  • Loading branch information
layershifter authored and Brandon Lawrence committed Mar 14, 2018
1 parent 38a6b14 commit cd313db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/addons/Responsive/Responsive.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ export interface ResponsiveProps {
}

export interface ResponsiveOnUpdateData extends ResponsiveProps {
width: string;
width: number;
}

export interface ResponsiveWidthShorthand {
minWidth: number;
maxWidth?: number;
minWidth?: number | string;
maxWidth?: number | string;
}

declare class Responsive extends React.Component<ResponsiveProps, {}> {
Expand Down

0 comments on commit cd313db

Please sign in to comment.