-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathindex.ts
More file actions
49 lines (48 loc) · 1.78 KB
/
index.ts
File metadata and controls
49 lines (48 loc) · 1.78 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
43
44
45
46
47
48
49
import { type ChannelsEndpoints } from './channels';
import { type ChatEndpoints } from './chat';
import { type CustomUserStatusEndpoints } from './customUserStatus';
import { type DmEndpoints } from './dm';
import { type EmojiCustomEndpoints } from './emojiCustom';
import { type GroupsEndpoints } from './groups';
import { type ImEndpoints } from './im';
import { type InvitesEndpoints } from './invites';
import { type OmnichannelEndpoints } from './omnichannel';
import { type PermissionsEndpoints } from './permissions';
import { type RolesEndpoints } from './roles';
import { type RoomsEndpoints } from './rooms';
import { type OauthCustomConfiguration } from './settings';
import { type UsersEndpoints } from './users';
import { type TeamsEndpoints } from './teams';
import { type E2eEndpoints } from './e2e';
import { type SubscriptionsEndpoints } from './subscriptions';
import { type VideoConferenceEndpoints } from './videoConference';
import { type CommandsEndpoints } from './commands';
import { type PushEndpoints } from './push';
import { type DirectoryEndpoint } from './directory';
import { type AutoTranslateEndpoints } from './autotranslate';
import { type ModerationEndpoints } from './moderation';
import { type AppsTranslationsEndpoints } from './appTranslations';
export type Endpoints = ChannelsEndpoints &
ChatEndpoints &
CustomUserStatusEndpoints &
DmEndpoints &
EmojiCustomEndpoints &
GroupsEndpoints &
ImEndpoints &
InvitesEndpoints &
OmnichannelEndpoints &
PermissionsEndpoints &
RolesEndpoints &
RoomsEndpoints &
OauthCustomConfiguration &
UsersEndpoints &
TeamsEndpoints &
E2eEndpoints &
SubscriptionsEndpoints &
VideoConferenceEndpoints &
CommandsEndpoints &
PushEndpoints &
DirectoryEndpoint &
AutoTranslateEndpoints &
ModerationEndpoints &
AppsTranslationsEndpoints;