File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export interface BotCommand {
9
9
10
10
export interface BotEmbed {
11
11
embeds : EmbedBuilder [ ]
12
- components ?: any // ActionRowBuilder[]
12
+ components ?: ActionRowBuilder < any > [ ]
13
13
}
14
14
15
15
export interface BotEvent {
@@ -22,14 +22,22 @@ export interface BotEvent {
22
22
) => void | Promise < void >
23
23
}
24
24
25
+ export enum QueueItemType {
26
+ Default ,
27
+ Quick ,
28
+ Regenerated ,
29
+ Variant ,
30
+ Upscaled
31
+ }
32
+
25
33
export interface QueueItem {
26
34
uuid : string // Unique queue uuid
27
35
seed : number // RNG
36
+ type : QueueItemType
28
37
messageId ?: string // Discord main message snowflake ID.
29
38
interaction : ChatInputCommandInteraction
30
39
discordCaller : string // Snowflake of caller for command
31
40
prediction : {
32
- isLegacy ?: true // Was this triggered by the legacy imagine command?
33
41
prompt : string // Prompt text
34
42
width : number // Image size, min 64
35
43
height : number // Image size, min 64
You can’t perform that action at this time.
0 commit comments