Blame view

天文台pc/tianwentai-ui/node_modules/@mui/utils/generateUtilityClass/generateUtilityClass.d.ts 523 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  export type GlobalStateSlot = keyof typeof globalStateClasses;
  export declare const globalStateClasses: {
    active: string;
    checked: string;
    completed: string;
    disabled: string;
    error: string;
    expanded: string;
    focused: string;
    focusVisible: string;
    open: string;
    readOnly: string;
    required: string;
    selected: string;
  };
  export default function generateUtilityClass(componentName: string, slot: string, globalStatePrefix?: string): string;
  export declare function isGlobalState(slot: string): boolean;