ConverseJS: theme settings.

This commit is contained in:
John Livingston
2021-11-18 11:08:12 +01:00
parent 8a2b063489
commit 9b20042aad
7 changed files with 60 additions and 6 deletions

View File

@ -1,4 +1,5 @@
type ChatType = 'disabled' | 'builtin-prosody' | 'builtin-converse' | 'external-uri'
type ConverseJSTheme = 'peertube' | 'default' | 'concord'
interface ProsodyListRoomsResultError {
ok: false
@ -28,6 +29,7 @@ type ProsodyListRoomsResult = ProsodyListRoomsResultError | ProsodyListRoomsResu
export {
ChatType,
ConverseJSTheme,
ProsodyListRoomsResult,
ProsodyListRoomsResultRoom
}