-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathmod.ts
More file actions
181 lines (176 loc) · 4.13 KB
/
mod.ts
File metadata and controls
181 lines (176 loc) · 4.13 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import {
ContactGender,
ContactType,
type ContactPayload,
type ContactQueryFilter,
} from './contact.js'
import {
ScanStatus,
} from './event.js'
import {
type FriendshipAddOptions,
type FriendshipPayload,
type FriendshipPayloadConfirm,
type FriendshipPayloadReceive,
type FriendshipPayloadVerify,
type FriendshipSearchQueryFilter,
FriendshipType,
FriendshipSceneType,
} from './friendship.js'
import {
ImageType,
} from './image.js'
import {
type MessagePayload,
type MessagePayloadBase,
type MessagePayloadRoom,
type MessagePayloadTo,
type MessageQueryFilter,
MessageType,
} from './message.js'
import { DirtyType } from './dirty.js'
import {
CHAT_EVENT_DICT,
PUPPET_EVENT_DICT,
YOU,
} from './puppet.js'
import {
type TapPayload,
TapType,
type TapQueryFilter,
} from './tap.js'
import {
type PostPayload,
PostType,
isPostPayloadClient,
isPostPayloadServer,
type PostQueryFilter,
type PostPayloadClient,
type PostPayloadServer,
} from './post.js'
import type {
EventDirtyPayload,
EventDongPayload,
EventErrorPayload,
EventFriendshipPayload,
EventHeartbeatPayload,
EventLoginPayload,
EventLogoutPayload,
EventMessagePayload,
EventPostPayload,
EventReadyPayload,
EventResetPayload,
EventRoomInvitePayload,
EventRoomJoinPayload,
EventRoomLeavePayload,
EventRoomTopicPayload,
EventRoomAnnouncePayload,
EventScanPayload,
} from './event.js'
import type {
RoomPayload,
RoomQueryFilter,
RoomMemberPayload,
RoomMemberQueryFilter,
} from './room.js'
import type {
RoomInvitationPayload,
} from './room-invitation.js'
import type {
UrlLinkPayload,
} from './url-link.js'
import type {
MiniProgramPayload,
} from './mini-program.js'
import type {
LocationPayload,
} from './location.js'
import type {
PuppetOptions,
PuppetEventName,
ChatEventName,
} from './puppet.js'
import {
type ChannelPayload,
ChannelType,
} from './channel.js'
import {
sayablePayloads,
sayableTypes,
type SayablePayload,
} from './sayable.js'
import type {
PaginationRequest,
PaginationResponse,
} from './pagination.js'
export {
CHAT_EVENT_DICT,
ContactGender,
ContactType,
DirtyType,
FriendshipSceneType,
FriendshipType,
ImageType,
isPostPayloadClient,
isPostPayloadServer,
MessageType,
PaginationRequest,
PaginationResponse,
PostType,
PUPPET_EVENT_DICT,
sayablePayloads,
sayableTypes,
ScanStatus,
TapType,
ChannelType,
type ChatEventName,
type ContactPayload,
type ContactQueryFilter,
type EventDirtyPayload,
type EventDongPayload,
type EventErrorPayload,
type EventFriendshipPayload,
type EventHeartbeatPayload,
type EventLoginPayload,
type EventLogoutPayload,
type EventMessagePayload,
type EventPostPayload,
type EventReadyPayload,
type EventResetPayload,
type EventRoomInvitePayload,
type EventRoomJoinPayload,
type EventRoomLeavePayload,
type EventRoomTopicPayload,
type EventRoomAnnouncePayload,
type EventScanPayload,
type FriendshipAddOptions,
type FriendshipPayload,
type FriendshipPayloadConfirm,
type FriendshipPayloadReceive,
type FriendshipPayloadVerify,
type FriendshipSearchQueryFilter,
type LocationPayload,
type MessagePayload,
type MessagePayloadBase,
type MessagePayloadRoom,
type MessagePayloadTo,
type MessageQueryFilter,
type MiniProgramPayload,
type PostPayload,
type PostPayloadClient,
type PostPayloadServer,
type PostQueryFilter,
type PuppetEventName,
type PuppetOptions,
type RoomInvitationPayload,
type RoomMemberPayload,
type RoomMemberQueryFilter,
type RoomPayload,
type RoomQueryFilter,
type SayablePayload,
type TapPayload,
type TapQueryFilter,
type UrlLinkPayload,
type ChannelPayload,
YOU,
}