fix(types): add ThreadMember.member (#4139)

This commit is contained in:
Awesome Stickz
2025-02-24 01:17:20 +05:30
committed by GitHub
parent 4d3bdf233d
commit 47b31622e4
+8 -2
View File
@@ -1656,10 +1656,16 @@ export interface Template {
}
export interface ThreadMember {
id?: bigint
userId?: bigint
/** Any user-thread settings, currently only used for notifications */
flags: number
/** The id of the thread */
id?: bigint
/** The id of the user */
userId?: bigint
/** The time the current user last joined the thread */
joinTimestamp: number
/** The member object of the user */
member?: Member
}
export interface ThreadMemberGuildCreate {