new react-openapi

This commit is contained in:
2026-07-13 16:15:26 +05:30
parent 72e7e843a4
commit f3135b8247
9 changed files with 1016 additions and 673 deletions

11
src/shared-theme/theme-augment.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
import "@mui/material/styles";
declare module "@mui/material/styles" {
interface Theme {
vars?: Record<string, any>;
applyStyles<T>(mode: "light" | "dark", styles: T): T | {};
}
interface ThemeOptions {
vars?: Record<string, any>;
}
}