TypeScript Version: 2.1.1 / 2.2
Code
export function createMuiTheme(config = {} as any) {
const {
palette = createPalette(),
breakpoints = createBreakpoints(),
mixins = createMixins(breakpoints),
typography = createTypography(palette),
...more
} = config as any;
...
}
Expected behavior:
Compile without error.
Actual behavior:
TS2448:Block-scoped variable 'breakpoints' used before its declaration.
TypeScript Version: 2.1.1 / 2.2
Code
Expected behavior:
Compile without error.
Actual behavior:
TS2448:Block-scoped variable 'breakpoints' used before its declaration.