-
Notifications
You must be signed in to change notification settings - Fork 275
Expand file tree
/
Copy pathindex.ts
More file actions
42 lines (41 loc) · 1.56 KB
/
index.ts
File metadata and controls
42 lines (41 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { UserModel } from "./user/User";
import { UserQQModel } from "./user/QQ";
import { UserWeChatModel } from "./user/WeChat";
import { UserGithubModel } from "./user/Github";
import { UserAppleModel } from "./user/Apple";
import { UserAgoraModel } from "./user/Agora";
import { UserGoogleModel } from "./user/Google";
import { UserPhoneModel } from "./user/Phone";
import { RoomModel } from "./room/Room";
import { RoomUserModel } from "./room/RoomUser";
import { RoomPeriodicConfigModel } from "./room/RoomPeriodicConfig";
import { RoomPeriodicModel } from "./room/RoomPeriodic";
import { RoomPeriodicUserModel } from "./room/RoomPeriodicUser";
import { RoomRecordModel } from "./room/RoomRecord";
import { CloudStorageFilesModel } from "./cloudStorage/CloudStorageFiles";
import { CloudStorageUserFilesModel } from "./cloudStorage/CloudStorageUserFiles";
import { CloudStorageConfigsModel } from "./cloudStorage/CloudStorageConfigs";
import { OAuthInfosModel } from "./oauth/oauth-infos";
import { OAuthSecretsModel } from "./oauth/oauth-secrets";
import { OAuthUsersModel } from "./oauth/oauth-users";
export type Model =
| UserModel
| UserQQModel
| UserWeChatModel
| UserGithubModel
| UserAppleModel
| UserAgoraModel
| UserGoogleModel
| UserPhoneModel
| RoomModel
| RoomUserModel
| RoomPeriodicConfigModel
| RoomPeriodicModel
| RoomPeriodicUserModel
| RoomRecordModel
| CloudStorageFilesModel
| CloudStorageUserFilesModel
| CloudStorageConfigsModel
| OAuthInfosModel
| OAuthSecretsModel
| OAuthUsersModel;