A few small bugfixes

This commit is contained in:
Scott Nonnenberg 2020-10-30 10:56:03 -07:00 committed by GitHub
parent cd9aee84f5
commit 05f905fd10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 52 additions and 44 deletions

8
ts/textsecure.d.ts vendored
View file

@ -1107,10 +1107,10 @@ export declare namespace SyncMessageClass {
}
class MessageRequestResponse {
threadE164?: string;
threadUuid?: string;
groupId?: ProtoBinaryType;
type?: number;
threadE164: string | null;
threadUuid: string | null;
groupId: ProtoBinaryType | null;
type: number | null;
}
}