Custom channel emoticons WIP (#130)

This commit is contained in:
John Livingston
2024-06-04 16:39:25 +02:00
parent 607a71b8cb
commit 688ab4f029
15 changed files with 469 additions and 48 deletions

View File

@ -161,6 +161,11 @@ interface ChannelEmojis {
customEmojis: CustomEmojiDefinition[]
}
interface ChannelEmojisConfiguration {
channel: ChannelInfos
emojis: ChannelEmojis
}
export type {
ConverseJSTheme,
InitConverseJSParams,
@ -178,5 +183,6 @@ export type {
ExternalAuthResult,
ExternalAuthOIDCType,
CustomEmojiDefinition,
ChannelEmojis
ChannelEmojis,
ChannelEmojisConfiguration
}