mirror of
https://gitdab.com/cadence/out-of-your-element.git
synced 2025-09-10 04:12:50 +02:00
space and room creation
This commit is contained in:
parent
51480e21e5
commit
c7868e9dbb
15 changed files with 328 additions and 36 deletions
18
types.d.ts
vendored
18
types.d.ts
vendored
|
@ -1,6 +1,24 @@
|
|||
export type AppServiceRegistrationConfig = {
|
||||
id: string
|
||||
as_token: string
|
||||
hs_token: string
|
||||
url: string
|
||||
sender_localpart: string
|
||||
protocols: [string]
|
||||
rate_limited: boolean
|
||||
}
|
||||
|
||||
export type M_Room_Message_content = {
|
||||
msgtype: "m.text"
|
||||
body: string
|
||||
formatted_body?: "org.matrix.custom.html"
|
||||
format?: string
|
||||
}
|
||||
|
||||
export type R_RoomCreated = {
|
||||
room_id: string
|
||||
}
|
||||
|
||||
export type R_FileUploaded = {
|
||||
content_uri: string
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue