34 lines
627 B
TypeScript
Raw Normal View History

2021-11-18 11:08:12 +01:00
type ConverseJSTheme = 'peertube' | 'default' | 'concord'
2021-06-12 01:16:57 +02:00
interface ProsodyListRoomsResultError {
ok: false
error: string
}
2021-08-05 18:25:27 +02:00
interface ProsodyListRoomsResultRoom {
jid: string
localpart: string
name: string
lang: string
description: string
lasttimestamp?: number
channel?: {
id: number
name: string
displayName: string
}
}
2021-06-12 01:16:57 +02:00
interface ProsodyListRoomsResultSuccess {
ok: true
2021-08-05 18:25:27 +02:00
rooms: ProsodyListRoomsResultRoom[]
2021-06-12 01:16:57 +02:00
}
type ProsodyListRoomsResult = ProsodyListRoomsResultError | ProsodyListRoomsResultSuccess
export {
2021-11-18 11:08:12 +01:00
ConverseJSTheme,
2021-08-05 18:25:27 +02:00
ProsodyListRoomsResult,
ProsodyListRoomsResultRoom
}