fix(types): mark id, userId as optional in ThreadMember (#1044)

This commit is contained in:
rigormorrtiss
2021-06-15 13:17:11 +04:00
committed by GitHub
parent c1ffa6b5f5
commit 83fd5d997c
+2 -2
View File
@@ -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 */