summary refs log tree commit diff
path: root/src/util/schemas/LazyRequestSchema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/schemas/LazyRequestSchema.ts')
-rw-r--r--src/util/schemas/LazyRequestSchema.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/schemas/LazyRequestSchema.ts b/src/util/schemas/LazyRequestSchema.ts

index 7cf3fd36..9d25eb37 100644 --- a/src/util/schemas/LazyRequestSchema.ts +++ b/src/util/schemas/LazyRequestSchema.ts
@@ -22,7 +22,7 @@ export interface LazyRequestSchema { activities?: boolean; threads?: boolean; typing?: true; - members?: unknown[]; + members?: string[]; thread_member_lists?: unknown[]; } @@ -32,6 +32,6 @@ export const LazyRequestSchema = { $channels: Object, $typing: Boolean, $threads: Boolean, - $members: [] as unknown[], + $members: [] as string[], $thread_member_lists: [] as unknown[], };