xref: /MusicFree/src/components/dialogs/components/index.ts (revision 740e39476f71e0e17304d812ac0a4c4cdc183ed1)
1import DownloadDialog from './downloadDialog';
2import EditSheetDetailDialog from './editSheetDetail';
3import LoadingDialog from './loadingDialog';
4import RadioDialog from './radioDialog';
5import SimpleDialog from './simpleDialog';
6import SubscribePluginDialog from './subscribePluginDialog';
7import CheckStorage from '@/components/dialogs/components/checkStorage.tsx';
8
9const dialogs = {
10    SimpleDialog,
11    RadioDialog,
12    DownloadDialog,
13    SubscribePluginDialog,
14    LoadingDialog,
15    EditSheetDetailDialog,
16    CheckStorage,
17};
18
19export default dialogs;
20
21export type IDialogType = typeof dialogs;
22export type IDialogKey = keyof IDialogType;
23