Skip to content

Commit

Permalink
[Drawer] remove docked prop and add type prop to TypeScript definition (
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredklewis authored and oliviertassinari committed Sep 1, 2017
1 parent 9803435 commit fad1a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Drawer/Drawer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ import { Theme } from '../styles/createMuiTheme';

export interface DrawerProps extends ModalProps {
anchor?: 'left' | 'top' | 'right' | 'bottom';
docked?: boolean;
elevation?: number;
enterTransitionDuration?: number;
leaveTransitionDuration?: number;
open?: boolean;
SlideProps?: SlideProps;
theme?: Theme;
type: 'permanent' | 'persistent' | 'temporary';
}

export default class Drawer extends StyledComponent<DrawerProps> {}

0 comments on commit fad1a78

Please sign in to comment.