Resolve Matrix room aliases to Discord channels

This commit is contained in:
Cadence Ember 2025-01-08 13:56:59 +13:00
commit ad1aa2c0f6
4 changed files with 155 additions and 2 deletions

5
src/types.d.ts vendored
View file

@ -336,6 +336,11 @@ export namespace R {
room_id: string
room_type?: string
}
export type ResolvedRoom = {
room_id: string
servers: string[]
}
}
export type Pagination<T> = {