This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
front/node_modules/@mui/material/themeCssVarsAugmentation/index.d.ts
2024-09-18 13:34:19 -03:00

11 lines
272 B
TypeScript

export {};
/**
* Enhance the theme types to include new properties from the CssVarsProvider.
* The theme is typed with CSS variables in `styled`, `sx`, `useTheme`, etc.
*/
declare module '@mui/material/styles' {
interface CssThemeVariables {
enabled: true;
}
}