custom emoji picker

merges fbb7ed3c9c (diff-beb98739004ececc621a1ab4a177e04f96d8d358c215716df0dcf1e1cb0f453c) and makes it fully functional along with CSS fixes
This commit is contained in:
MathMan05 2024-08-13 13:53:52 -05:00
parent 96faadddd0
commit ece9ebceb5
8 changed files with 174 additions and 60 deletions

View file

@ -156,12 +156,17 @@ type memberjson= {
pending: boolean,
last_message_id?: boolean//What???
}
type emojijson={
name:string,
id?:string,
animated?:boolean
}
type guildjson={
application_command_counts: {[key:string]:number},
channels: channeljson[],
data_mode: string,
emojis: [],
emojis: emojijson[],
guild_scheduled_events: [],
id: string,
large: boolean,
@ -274,11 +279,7 @@ type messagejson={
embeds: embedjson[],
reactions: {
count:number,
emoji:{
name:string,
id?:string,
animated?:boolean
},//very likely needs expanding
emoji:emojijson,//very likely needs expanding
me:boolean,
}[],
nonce: string,
@ -326,4 +327,4 @@ type embedjson={
name:string,
}
}
export {readyjson,dirrectjson,channeljson,guildjson,rolesjson,userjson,memberjson,mainuserjson,messagejson,filejson,embedjson};
export {readyjson,dirrectjson,channeljson,guildjson,rolesjson,userjson,memberjson,mainuserjson,messagejson,filejson,embedjson,emojijson};