Adding the chat-type field in the settings.

This commit is contained in:
John Livingston
2021-06-02 19:54:04 +02:00
parent 11d79fc611
commit 36146ee76c
5 changed files with 88 additions and 7 deletions

5
shared/lib/types.ts Normal file
View File

@ -0,0 +1,5 @@
type ChatType = 'disabled' | 'builtin-prosody' | 'builtin-converse' | 'external-uri'
export {
ChatType
}