Fixes pinned conversations sync
This commit is contained in:
parent
987d3168e8
commit
9438b7b3fe
5 changed files with 281 additions and 41 deletions
3
ts/window.d.ts
vendored
3
ts/window.d.ts
vendored
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue