10 lines
184 B
TypeScript
10 lines
184 B
TypeScript
import '@mui/material/styles';
|
|
|
|
declare module '@mui/material/styles' {
|
|
interface TypeBackground {
|
|
hover?: string;
|
|
lightSecondary?: string;
|
|
darkSecondary?: string;
|
|
}
|
|
}
|