mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 05:02:37 +01:00
Add thread_member_lists to LazyRequest
This commit is contained in:
parent
3e6e19e838
commit
e1ffed7b4a
@ -5,6 +5,7 @@ export interface LazyRequest {
|
|||||||
threads?: boolean;
|
threads?: boolean;
|
||||||
typing?: true;
|
typing?: true;
|
||||||
members?: any[];
|
members?: any[];
|
||||||
|
thread_member_lists?: any[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export const LazyRequest = {
|
export const LazyRequest = {
|
||||||
@ -14,4 +15,5 @@ export const LazyRequest = {
|
|||||||
$typing: Boolean,
|
$typing: Boolean,
|
||||||
$threads: Boolean,
|
$threads: Boolean,
|
||||||
$members: [] as any[],
|
$members: [] as any[],
|
||||||
|
$thread_member_lists: [] as any[],
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user