Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[theme] Fix TypographyOptions type #9364

Merged
merged 12 commits into from Dec 2, 2017
4 changes: 4 additions & 0 deletions src/styles/index.d.ts
Expand Up @@ -2,3 +2,7 @@ export { default as MuiThemeProvider } from './MuiThemeProvider';
export { default as withStyles, WithStyles, StyleRules, StyleRulesCallback, StyledComponentProps } from './withStyles';
export { default as withTheme } from './withTheme';
export { default as createMuiTheme, Theme, Direction } from './createMuiTheme';

export type DeepPartial<T> = {
[P in keyof T]?: DeepPartial<T[P]>;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I meant src/index.d.ts