1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-11 05:02:37 +01:00

Merge pull request #74 from luth31/master

This commit is contained in:
Flam3rboy 2021-07-24 09:19:20 +02:00 committed by GitHub
commit 04a6590bd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@ export interface LazyRequest {
threads?: boolean;
typing?: true;
members?: any[];
thread_member_lists?: any[];
}
export const LazyRequest = {
@ -14,4 +15,5 @@ export const LazyRequest = {
$typing: Boolean,
$threads: Boolean,
$members: [] as any[],
$thread_member_lists: [] as any[],
};