Blame view

天文台pc/tianwentai-ui/node_modules/@mui/system/GlobalStyles/GlobalStyles.d.ts 522 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  import { Interpolation } from '@mui/styled-engine';
  import { Theme as SystemTheme } from "../createTheme/index.js";
  export interface GlobalStylesProps<Theme = SystemTheme> {
    styles: Interpolation<Theme>;
    defaultTheme?: object | undefined;
    themeId?: string | undefined;
  }
  declare function GlobalStyles<Theme = SystemTheme>({
    styles,
    themeId,
    defaultTheme
  }: GlobalStylesProps<Theme>): import("react/jsx-runtime").JSX.Element;
  declare namespace GlobalStyles {
    var propTypes: any;
  }
  export default GlobalStyles;