13 lines
277 B
TypeScript
13 lines
277 B
TypeScript
import ChatType from "./ChatType.ts"
|
|
|
|
export default class ChatBean {
|
|
declare type: ChatType
|
|
declare id: string
|
|
declare title?: string
|
|
declare avatar_file_hash?: string
|
|
declare members_list: string
|
|
declare settings: string
|
|
|
|
[key: string]: unknown
|
|
}
|