peertube-plugin-livechat/shared/lib/types.ts
2021-06-12 03:52:45 +02:00

25 lines
470 B
TypeScript

type ChatType = 'disabled' | 'builtin-prosody' | 'builtin-converse' | 'external-uri'
interface ProsodyListRoomsResultError {
ok: false
error: string
}
interface ProsodyListRoomsResultSuccess {
ok: true
rooms: Array<{
jid: string
localpart: string
name: string
lang: string
description: string
}>
}
type ProsodyListRoomsResult = ProsodyListRoomsResultError | ProsodyListRoomsResultSuccess
export {
ChatType,
ProsodyListRoomsResult
}