export type Type = 'default' | 'primary' | 'info' | 'success' | 'warning' | 'error';
const style: { [type: string]: CSSProperties } = { // [type: Type] 这样会报错
default: {
...baseStyle,
color: 'rgb(51, 54, 57)',
backgroundColor: '#0000',
},
primary: {
...baseStyle,
color: '#FFF',
backgroundColor: '#18a058',
},
info: {
...baseStyle,
color: '#FFF',
backgroundColor: '#2080f0',
},
success: {
...baseStyle,
color: '#FFF',
backgroundColor: '#18a058',
},
warning: {
...baseStyle,
color: '#FFF',
backgroundColor: '#f0a020',
},
error: {
...baseStyle,
color: '#FFF',
backgroundColor: '#d03050',
},
};
{[key in Type]: CSSProperties}