disgroove 2.2.7-dev.fca4921 → 3.0.0-dev.bc90599
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/Client.d.ts +291 -254
- package/dist/lib/Client.js +553 -459
- package/dist/lib/constants.d.ts +29 -21
- package/dist/lib/constants.js +33 -24
- package/dist/lib/gateway/Shard.d.ts +2 -2
- package/dist/lib/gateway/Shard.js +98 -82
- package/dist/lib/index.d.ts +5 -1
- package/dist/lib/index.js +5 -1
- package/dist/lib/rest/Endpoints.d.ts +95 -91
- package/dist/lib/rest/Endpoints.js +111 -102
- package/dist/lib/rest/RequestManager.d.ts +1 -3
- package/dist/lib/transformers/ApplicationCommands.js +4 -4
- package/dist/lib/transformers/Applications.js +4 -4
- package/dist/lib/transformers/AuditLogs.js +10 -10
- package/dist/lib/transformers/AutoModeration.js +6 -6
- package/dist/lib/transformers/Channels.js +16 -16
- package/dist/lib/transformers/Components.d.ts +13 -3
- package/dist/lib/transformers/Components.js +283 -156
- package/dist/lib/transformers/Entitlements.d.ts +2 -2
- package/dist/lib/transformers/Entitlements.js +16 -16
- package/dist/lib/transformers/GuildScheduledEvents.js +8 -8
- package/dist/lib/transformers/GuildTemplates.js +4 -4
- package/dist/lib/transformers/Guilds.js +28 -28
- package/dist/lib/transformers/Interactions.js +300 -55
- package/dist/lib/transformers/Lobbies.d.ts +7 -0
- package/dist/lib/transformers/Lobbies.js +38 -0
- package/dist/lib/transformers/Messages.d.ts +4 -3
- package/dist/lib/transformers/Messages.js +36 -50
- package/dist/lib/transformers/Polls.js +2 -2
- package/dist/lib/transformers/Presences.js +6 -6
- package/dist/lib/transformers/Roles.js +8 -8
- package/dist/lib/transformers/SKUs.js +2 -2
- package/dist/lib/transformers/Soundboards.js +6 -6
- package/dist/lib/transformers/StageInstances.js +6 -6
- package/dist/lib/transformers/Stickers.js +3 -3
- package/dist/lib/transformers/Subscriptions.js +8 -8
- package/dist/lib/transformers/Teams.js +4 -4
- package/dist/lib/transformers/Users.js +6 -6
- package/dist/lib/transformers/Voice.js +8 -8
- package/dist/lib/transformers/Webhooks.js +6 -6
- package/dist/lib/transformers/index.d.ts +2 -1
- package/dist/lib/transformers/index.js +2 -1
- package/dist/lib/types/application-command.d.ts +9 -4
- package/dist/lib/types/application-role-connection-metadata.d.ts +1 -0
- package/dist/lib/types/application.d.ts +12 -7
- package/dist/lib/types/audit-log.d.ts +9 -5
- package/dist/lib/types/auto-moderation.d.ts +7 -3
- package/dist/lib/types/channel.d.ts +17 -23
- package/dist/lib/types/common.d.ts +2 -0
- package/dist/lib/types/components.d.ts +478 -0
- package/dist/lib/types/components.js +2 -0
- package/dist/lib/types/emoji.d.ts +1 -0
- package/dist/lib/types/entitlements.d.ts +5 -4
- package/dist/lib/types/gateway-events.d.ts +203 -130
- package/dist/lib/types/guild-scheduled-event.d.ts +10 -5
- package/dist/lib/types/guild-template.d.ts +3 -2
- package/dist/lib/types/guild.d.ts +40 -22
- package/dist/lib/types/interaction.d.ts +35 -18
- package/dist/lib/types/invite.d.ts +5 -2
- package/dist/lib/types/lobby.d.ts +31 -0
- package/dist/lib/types/lobby.js +2 -0
- package/dist/lib/types/message-components.d.ts +334 -118
- package/dist/lib/types/message.d.ts +30 -18
- package/dist/lib/types/poll.d.ts +7 -1
- package/dist/lib/types/role.d.ts +8 -5
- package/dist/lib/types/sku.d.ts +2 -1
- package/dist/lib/types/soundboard.d.ts +4 -3
- package/dist/lib/types/stage-instance.d.ts +4 -3
- package/dist/lib/types/sticker.d.ts +8 -5
- package/dist/lib/types/subscription.d.ts +6 -5
- package/dist/lib/types/team.d.ts +4 -2
- package/dist/lib/types/user.d.ts +10 -3
- package/dist/lib/types/voice.d.ts +6 -4
- package/dist/lib/types/webhook.d.ts +4 -3
- package/dist/lib/utils/CDN.d.ts +22 -22
- package/dist/lib/utils/CDN.js +22 -22
- package/dist/lib/utils/formatters.d.ts +7 -7
- package/dist/lib/utils/formatters.js +19 -19
- package/dist/package.json +4 -4
- package/package.json +4 -4
|
@@ -6,8 +6,8 @@ class ApplicationCommands {
|
|
|
6
6
|
return {
|
|
7
7
|
id: command.id,
|
|
8
8
|
type: command.type,
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
applicationId: command.application_id,
|
|
10
|
+
guildId: command.guild_id,
|
|
11
11
|
name: command.name,
|
|
12
12
|
nameLocalizations: command.name_localizations,
|
|
13
13
|
description: command.description,
|
|
@@ -27,8 +27,8 @@ class ApplicationCommands {
|
|
|
27
27
|
return {
|
|
28
28
|
id: command.id,
|
|
29
29
|
type: command.type,
|
|
30
|
-
application_id: command.
|
|
31
|
-
guild_id: command.
|
|
30
|
+
application_id: command.applicationId,
|
|
31
|
+
guild_id: command.guildId,
|
|
32
32
|
name: command.name,
|
|
33
33
|
name_localizations: command.nameLocalizations,
|
|
34
34
|
description: command.description,
|
|
@@ -21,11 +21,11 @@ class Applications {
|
|
|
21
21
|
: undefined,
|
|
22
22
|
verifyKey: application.verify_key,
|
|
23
23
|
team: application.team !== null ? Teams_1.Teams.teamFromRaw(application.team) : null,
|
|
24
|
-
|
|
24
|
+
guildId: application.guild_id,
|
|
25
25
|
guild: application.guild !== undefined
|
|
26
26
|
? Guilds_1.Guilds.guildFromRaw(application.guild)
|
|
27
27
|
: undefined,
|
|
28
|
-
|
|
28
|
+
primarySKUId: application.primary_sku_id,
|
|
29
29
|
slug: application.slug,
|
|
30
30
|
coverImage: application.cover_image,
|
|
31
31
|
flags: application.flags,
|
|
@@ -71,11 +71,11 @@ class Applications {
|
|
|
71
71
|
: undefined,
|
|
72
72
|
verify_key: application.verifyKey,
|
|
73
73
|
team: application.team !== null ? Teams_1.Teams.teamToRaw(application.team) : null,
|
|
74
|
-
guild_id: application.
|
|
74
|
+
guild_id: application.guildId,
|
|
75
75
|
guild: application.guild !== undefined
|
|
76
76
|
? Guilds_1.Guilds.guildToRaw(application.guild)
|
|
77
77
|
: undefined,
|
|
78
|
-
primary_sku_id: application.
|
|
78
|
+
primary_sku_id: application.primarySKUId,
|
|
79
79
|
slug: application.slug,
|
|
80
80
|
cover_image: application.coverImage,
|
|
81
81
|
flags: application.flags,
|
|
@@ -11,26 +11,26 @@ const Webhooks_1 = require("./Webhooks");
|
|
|
11
11
|
class AuditLogs {
|
|
12
12
|
static auditLogEntryFromRaw(auditLogEntry) {
|
|
13
13
|
return {
|
|
14
|
-
|
|
14
|
+
targetId: auditLogEntry.target_id,
|
|
15
15
|
changes: auditLogEntry.changes?.map((auditLogChange) => ({
|
|
16
16
|
newValue: auditLogChange.new_value,
|
|
17
17
|
oldValue: auditLogChange.old_value,
|
|
18
18
|
key: auditLogChange.key,
|
|
19
19
|
})),
|
|
20
|
-
|
|
20
|
+
userId: auditLogEntry.user_id,
|
|
21
21
|
id: auditLogEntry.id,
|
|
22
22
|
actionType: auditLogEntry.action_type,
|
|
23
23
|
options: auditLogEntry.options !== undefined
|
|
24
24
|
? {
|
|
25
|
-
|
|
25
|
+
applicationId: auditLogEntry.options.application_id,
|
|
26
26
|
autoModerationRuleName: auditLogEntry.options.auto_moderation_rule_name,
|
|
27
27
|
autoModerationRuleTriggerType: auditLogEntry.options.auto_moderation_rule_trigger_type,
|
|
28
|
-
|
|
28
|
+
channelId: auditLogEntry.options.channel_id,
|
|
29
29
|
count: auditLogEntry.options.count,
|
|
30
30
|
deleteMemberDays: auditLogEntry.options.delete_member_days,
|
|
31
31
|
id: auditLogEntry.options.id,
|
|
32
32
|
membersRemoved: auditLogEntry.options.members_removed,
|
|
33
|
-
|
|
33
|
+
messageId: auditLogEntry.options.message_id,
|
|
34
34
|
roleName: auditLogEntry.options.role_name,
|
|
35
35
|
type: auditLogEntry.options.type,
|
|
36
36
|
integrationType: auditLogEntry.options.integration_type,
|
|
@@ -41,26 +41,26 @@ class AuditLogs {
|
|
|
41
41
|
}
|
|
42
42
|
static auditLogEntryToRaw(auditLogEntry) {
|
|
43
43
|
return {
|
|
44
|
-
target_id: auditLogEntry.
|
|
44
|
+
target_id: auditLogEntry.targetId,
|
|
45
45
|
changes: auditLogEntry.changes?.map((auditLogChange) => ({
|
|
46
46
|
new_value: auditLogChange.newValue,
|
|
47
47
|
old_value: auditLogChange.oldValue,
|
|
48
48
|
key: auditLogChange.key,
|
|
49
49
|
})),
|
|
50
|
-
user_id: auditLogEntry.
|
|
50
|
+
user_id: auditLogEntry.userId,
|
|
51
51
|
id: auditLogEntry.id,
|
|
52
52
|
action_type: auditLogEntry.actionType,
|
|
53
53
|
options: auditLogEntry.options !== undefined
|
|
54
54
|
? {
|
|
55
|
-
application_id: auditLogEntry.options.
|
|
55
|
+
application_id: auditLogEntry.options.applicationId,
|
|
56
56
|
auto_moderation_rule_name: auditLogEntry.options.autoModerationRuleName,
|
|
57
57
|
auto_moderation_rule_trigger_type: auditLogEntry.options.autoModerationRuleTriggerType,
|
|
58
|
-
channel_id: auditLogEntry.options.
|
|
58
|
+
channel_id: auditLogEntry.options.channelId,
|
|
59
59
|
count: auditLogEntry.options.count,
|
|
60
60
|
delete_member_days: auditLogEntry.options.deleteMemberDays,
|
|
61
61
|
id: auditLogEntry.options.id,
|
|
62
62
|
members_removed: auditLogEntry.options.membersRemoved,
|
|
63
|
-
message_id: auditLogEntry.options.
|
|
63
|
+
message_id: auditLogEntry.options.messageId,
|
|
64
64
|
role_name: auditLogEntry.options.roleName,
|
|
65
65
|
type: auditLogEntry.options.type,
|
|
66
66
|
integration_type: auditLogEntry.options.integrationType,
|
|
@@ -6,7 +6,7 @@ class AutoModeration {
|
|
|
6
6
|
return {
|
|
7
7
|
type: action.type,
|
|
8
8
|
metadata: {
|
|
9
|
-
|
|
9
|
+
channelId: action.metadata.channel_id,
|
|
10
10
|
durationSeconds: action.metadata.duration_seconds,
|
|
11
11
|
customMessage: action.metadata.custom_message,
|
|
12
12
|
},
|
|
@@ -16,7 +16,7 @@ class AutoModeration {
|
|
|
16
16
|
return {
|
|
17
17
|
type: action.type,
|
|
18
18
|
metadata: {
|
|
19
|
-
channel_id: action.metadata.
|
|
19
|
+
channel_id: action.metadata.channelId,
|
|
20
20
|
duration_seconds: action.metadata.durationSeconds,
|
|
21
21
|
custom_message: action.metadata.customMessage,
|
|
22
22
|
},
|
|
@@ -25,9 +25,9 @@ class AutoModeration {
|
|
|
25
25
|
static autoModerationRuleFromRaw(autoModerationRule) {
|
|
26
26
|
return {
|
|
27
27
|
id: autoModerationRule.id,
|
|
28
|
-
|
|
28
|
+
guildId: autoModerationRule.guild_id,
|
|
29
29
|
name: autoModerationRule.name,
|
|
30
|
-
|
|
30
|
+
creatorId: autoModerationRule.creator_id,
|
|
31
31
|
eventType: autoModerationRule.event_type,
|
|
32
32
|
triggerType: autoModerationRule.trigger_type,
|
|
33
33
|
triggerMetadata: this.triggerMetadataFromRaw(autoModerationRule.trigger_metadata),
|
|
@@ -40,9 +40,9 @@ class AutoModeration {
|
|
|
40
40
|
static autoModerationRuleToRaw(autoModerationRule) {
|
|
41
41
|
return {
|
|
42
42
|
id: autoModerationRule.id,
|
|
43
|
-
guild_id: autoModerationRule.
|
|
43
|
+
guild_id: autoModerationRule.guildId,
|
|
44
44
|
name: autoModerationRule.name,
|
|
45
|
-
creator_id: autoModerationRule.
|
|
45
|
+
creator_id: autoModerationRule.creatorId,
|
|
46
46
|
event_type: autoModerationRule.eventType,
|
|
47
47
|
trigger_type: autoModerationRule.triggerType,
|
|
48
48
|
trigger_metadata: this.triggerMetadataToRaw(autoModerationRule.triggerMetadata),
|
|
@@ -8,7 +8,7 @@ class Channels {
|
|
|
8
8
|
return {
|
|
9
9
|
id: channel.id,
|
|
10
10
|
type: channel.type,
|
|
11
|
-
|
|
11
|
+
guildId: channel.guild_id,
|
|
12
12
|
position: channel.position,
|
|
13
13
|
permissionOverwrites: channel.permission_overwrites?.map((overwrite) => ({
|
|
14
14
|
id: overwrite.id,
|
|
@@ -19,16 +19,16 @@ class Channels {
|
|
|
19
19
|
name: channel.name,
|
|
20
20
|
topic: channel.topic,
|
|
21
21
|
nsfw: channel.nsfw,
|
|
22
|
-
|
|
22
|
+
lastMessageId: channel.last_message_id,
|
|
23
23
|
bitrate: channel.bitrate,
|
|
24
24
|
userLimit: channel.user_limit,
|
|
25
25
|
rateLimitPerUser: channel.rate_limit_per_user,
|
|
26
26
|
recipients: channel.recipients?.map((recipient) => Users_1.Users.userFromRaw(recipient)),
|
|
27
27
|
icon: channel.icon,
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
ownerId: channel.owner_id,
|
|
29
|
+
applicationId: channel.application_id,
|
|
30
30
|
managed: channel.managed,
|
|
31
|
-
|
|
31
|
+
parentId: channel.parent_id,
|
|
32
32
|
lastPinTimestamp: channel.last_pin_timestamp,
|
|
33
33
|
rtcRegion: channel.rtc_region,
|
|
34
34
|
videoQualityMode: channel.video_quality_mode,
|
|
@@ -55,14 +55,14 @@ class Channels {
|
|
|
55
55
|
id: availableTag.id,
|
|
56
56
|
name: availableTag.name,
|
|
57
57
|
moderated: availableTag.moderated,
|
|
58
|
-
|
|
58
|
+
emojiId: availableTag.emoji_id,
|
|
59
59
|
emojiName: availableTag.emoji_name,
|
|
60
60
|
})),
|
|
61
61
|
appliedTags: channel.applied_tags,
|
|
62
62
|
defaultReactionEmoji: channel.default_reaction_emoji !== undefined
|
|
63
63
|
? channel.default_reaction_emoji !== null
|
|
64
64
|
? {
|
|
65
|
-
|
|
65
|
+
emojiId: channel.default_reaction_emoji.emoji_id,
|
|
66
66
|
emojiName: channel.default_reaction_emoji.emoji_name,
|
|
67
67
|
}
|
|
68
68
|
: null
|
|
@@ -76,7 +76,7 @@ class Channels {
|
|
|
76
76
|
return {
|
|
77
77
|
id: channel.id,
|
|
78
78
|
type: channel.type,
|
|
79
|
-
guild_id: channel.
|
|
79
|
+
guild_id: channel.guildId,
|
|
80
80
|
position: channel.position,
|
|
81
81
|
permission_overwrites: channel.permissionOverwrites?.map((overwrite) => ({
|
|
82
82
|
id: overwrite.id,
|
|
@@ -87,16 +87,16 @@ class Channels {
|
|
|
87
87
|
name: channel.name,
|
|
88
88
|
topic: channel.topic,
|
|
89
89
|
nsfw: channel.nsfw,
|
|
90
|
-
last_message_id: channel.
|
|
90
|
+
last_message_id: channel.lastMessageId,
|
|
91
91
|
bitrate: channel.bitrate,
|
|
92
92
|
user_limit: channel.userLimit,
|
|
93
93
|
rate_limit_per_user: channel.rateLimitPerUser,
|
|
94
94
|
recipients: channel.recipients?.map((recipient) => Users_1.Users.userToRaw(recipient)),
|
|
95
95
|
icon: channel.icon,
|
|
96
|
-
owner_id: channel.
|
|
97
|
-
application_id: channel.
|
|
96
|
+
owner_id: channel.ownerId,
|
|
97
|
+
application_id: channel.applicationId,
|
|
98
98
|
managed: channel.managed,
|
|
99
|
-
parent_id: channel.
|
|
99
|
+
parent_id: channel.parentId,
|
|
100
100
|
last_pin_timestamp: channel.lastPinTimestamp,
|
|
101
101
|
rtc_region: channel.rtcRegion,
|
|
102
102
|
video_quality_mode: channel.videoQualityMode,
|
|
@@ -123,14 +123,14 @@ class Channels {
|
|
|
123
123
|
id: availableTag.id,
|
|
124
124
|
name: availableTag.name,
|
|
125
125
|
moderated: availableTag.moderated,
|
|
126
|
-
emoji_id: availableTag.
|
|
126
|
+
emoji_id: availableTag.emojiId,
|
|
127
127
|
emoji_name: availableTag.emojiName,
|
|
128
128
|
})),
|
|
129
129
|
applied_tags: channel.appliedTags,
|
|
130
130
|
default_reaction_emoji: channel.defaultReactionEmoji !== undefined
|
|
131
131
|
? channel.defaultReactionEmoji !== null
|
|
132
132
|
? {
|
|
133
|
-
emoji_id: channel.defaultReactionEmoji.
|
|
133
|
+
emoji_id: channel.defaultReactionEmoji.emojiId,
|
|
134
134
|
emoji_name: channel.defaultReactionEmoji.emojiName,
|
|
135
135
|
}
|
|
136
136
|
: null
|
|
@@ -143,7 +143,7 @@ class Channels {
|
|
|
143
143
|
static threadMemberFromRaw(threadMember) {
|
|
144
144
|
return {
|
|
145
145
|
id: threadMember.id,
|
|
146
|
-
|
|
146
|
+
userId: threadMember.user_id,
|
|
147
147
|
joinTimestamp: threadMember.join_timestamp,
|
|
148
148
|
flags: threadMember.flags,
|
|
149
149
|
member: threadMember.member !== undefined
|
|
@@ -154,7 +154,7 @@ class Channels {
|
|
|
154
154
|
static threadMemberToRaw(threadMember) {
|
|
155
155
|
return {
|
|
156
156
|
id: threadMember.id,
|
|
157
|
-
user_id: threadMember.
|
|
157
|
+
user_id: threadMember.userId,
|
|
158
158
|
join_timestamp: threadMember.joinTimestamp,
|
|
159
159
|
flags: threadMember.flags,
|
|
160
160
|
member: threadMember.member !== undefined
|
|
@@ -1,21 +1,29 @@
|
|
|
1
|
-
import { ActionRow, Button, Container, RawActionRow, RawButton, RawContainer, RawFile, File, RawUnfurledMediaItem, UnfurledMediaItem, RawTextDisplay, TextDisplay, RawSeparator, Separator, RawSection, Section, Thumbnail, RawThumbnail, TextInput, RawTextInput,
|
|
1
|
+
import { ActionRow, Button, Container, RawActionRow, RawButton, RawContainer, RawFile, File, RawUnfurledMediaItem, UnfurledMediaItem, RawTextDisplay, TextDisplay, RawSeparator, Separator, RawSection, Section, Thumbnail, RawThumbnail, TextInput, RawTextInput, MediaGallery, RawMediaGallery, RawStringSelect, StringSelect, RawUserSelect, UserSelect, RawRoleSelect, RoleSelect, RawMentionableSelect, MentionableSelect, RawChannelSelect, ChannelSelect, RawLabel, Label } from "../types/components";
|
|
2
2
|
export declare class Components {
|
|
3
3
|
static actionRowFromRaw(actionRow: RawActionRow): ActionRow;
|
|
4
4
|
static actionRowToRaw(actionRow: ActionRow): RawActionRow;
|
|
5
5
|
static buttonFromRaw(button: RawButton): Button;
|
|
6
6
|
static buttonToRaw(button: Button): RawButton;
|
|
7
|
+
static channelSelectFromRaw(channelSelect: RawChannelSelect): ChannelSelect;
|
|
8
|
+
static channelSelectToRaw(channelSelect: ChannelSelect): RawChannelSelect;
|
|
7
9
|
static containerFromRaw(container: RawContainer): Container;
|
|
8
10
|
static containerToRaw(container: Container): RawContainer;
|
|
9
11
|
static fileFromRaw(file: RawFile): File;
|
|
10
12
|
static fileToRaw(file: File): RawFile;
|
|
13
|
+
static labelFromRaw(label: RawLabel): Label;
|
|
14
|
+
static labelToRaw(label: Label): RawLabel;
|
|
11
15
|
static mediaGalleryFromRaw(mediaGallery: RawMediaGallery): MediaGallery;
|
|
12
16
|
static mediaGalleryToRaw(mediaGallery: MediaGallery): RawMediaGallery;
|
|
17
|
+
static mentionableSelectFromRaw(mentionableSelect: RawMentionableSelect): MentionableSelect;
|
|
18
|
+
static mentionableSelectToRaw(mentionableSelect: MentionableSelect): RawMentionableSelect;
|
|
19
|
+
static roleSelectFromRaw(roleSelect: RawRoleSelect): RoleSelect;
|
|
20
|
+
static roleSelectToRaw(roleSelect: RoleSelect): RawRoleSelect;
|
|
13
21
|
static sectionFromRaw(section: RawSection): Section;
|
|
14
22
|
static sectionToRaw(section: Section): RawSection;
|
|
15
|
-
static selectMenuFromRaw(selectMenu: RawSelectMenu): SelectMenu;
|
|
16
|
-
static selectMenuToRaw(selectMenu: SelectMenu): RawSelectMenu;
|
|
17
23
|
static separatorFromRaw(separator: RawSeparator): Separator;
|
|
18
24
|
static separatorToRaw(separator: Separator): RawSeparator;
|
|
25
|
+
static stringSelectFromRaw(stringSelect: RawStringSelect): StringSelect;
|
|
26
|
+
static stringSelectToRaw(stringSelect: StringSelect): RawStringSelect;
|
|
19
27
|
static textDisplayFromRaw(textDisplay: RawTextDisplay): TextDisplay;
|
|
20
28
|
static textDisplayToRaw(textDisplay: TextDisplay): RawTextDisplay;
|
|
21
29
|
static textInputFromRaw(textInput: RawTextInput): TextInput;
|
|
@@ -24,4 +32,6 @@ export declare class Components {
|
|
|
24
32
|
static thumbnailToRaw(thumbnail: Thumbnail): RawThumbnail;
|
|
25
33
|
static unfurledMediaItemFromRaw(unfurledMediaItem: RawUnfurledMediaItem): UnfurledMediaItem;
|
|
26
34
|
static unfurledMediaItemToRaw(unfurledMediaItem: UnfurledMediaItem): RawUnfurledMediaItem;
|
|
35
|
+
static userSelectFromRaw(userSelect: RawUserSelect): UserSelect;
|
|
36
|
+
static userSelectToRaw(userSelect: UserSelect): RawUserSelect;
|
|
27
37
|
}
|