15 lines
322 B
TypeScript
15 lines
322 B
TypeScript
import ChatType from "./ChatType.ts"
|
|
|
|
export default class Chat {
|
|
declare type: ChatType
|
|
declare id: string
|
|
declare title: string
|
|
declare avatar_file_hash?: string
|
|
declare settings?: { [key: string]: unknown }
|
|
|
|
declare is_member: boolean
|
|
declare is_admin: boolean
|
|
|
|
[key: string]: unknown
|
|
}
|