Fixes pinned conversations sync

This commit is contained in:
Josh Perez 2021-04-08 12:27:20 -07:00 committed by GitHub
parent 987d3168e8
commit 9438b7b3fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 281 additions and 41 deletions

3
ts/window.d.ts vendored
View file

@ -572,8 +572,11 @@ export type DCodeIOType = {
Long: DCodeIOType['Long'];
};
Long: Long & {
equals: (other: Long | number | string) => boolean;
fromBits: (low: number, high: number, unsigned: boolean) => number;
fromNumber: (value: number, unsigned?: boolean) => Long;
fromString: (str: string | null) => Long;
isLong: (obj: unknown) => obj is Long;
};
};