mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
fix(types): mark id, userId as optional in ThreadMember (#1044)
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
export interface ThreadMember {
|
||||
/** The id of the thread */
|
||||
id: string;
|
||||
id?: string;
|
||||
/** The id of the user */
|
||||
userId: string;
|
||||
userId?: string;
|
||||
/** The time the current user last joined the thread */
|
||||
joinTimestamp: string;
|
||||
/** Any user-thread settings, currently only used for notifications */
|
||||
|
||||
Reference in New Issue
Block a user