@cmk/fe_utils
Version:
frontend utility library
15 lines (13 loc) • 356 B
TypeScript
import { Theme } from '@mui/material';
export type ExtendedTheme = Theme & {
name: string;
id: string;
};
declare module '@mui/material/styles/createTypography' {
interface Typography {
}
interface TypographyOptions {
}
}
export declare const muiLightSiteTheme: ExtendedTheme;
export declare const muiDarkSiteTheme: ExtendedTheme;