preparations for creating users

This commit is contained in:
Cadence Ember 2023-05-08 08:27:42 +12:00
commit 48c2ef76f5
2 changed files with 46 additions and 16 deletions

8
types.d.ts vendored
View file

@ -46,4 +46,12 @@ namespace R {
export type FileUploaded = {
content_uri: string
}
export type Registered = {
/** "@localpart:domain.tld" */
user_id: string
home_server: string
access_token: string
device_id: string
}
}