mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-19 16:08:34 +01:00
Replace typescript compiler with native tsgo compiler
This commit is contained in:
@@ -14,8 +14,8 @@ export enum CallLinkUpdateSyncType {
|
||||
}
|
||||
|
||||
export type CallLinkUpdateData = Readonly<{
|
||||
rootKey: Uint8Array;
|
||||
adminKey: Uint8Array | undefined;
|
||||
rootKey: Uint8Array<ArrayBuffer>;
|
||||
adminKey: Uint8Array<ArrayBuffer> | undefined;
|
||||
}>;
|
||||
|
||||
/**
|
||||
@@ -100,11 +100,11 @@ export type DefunctCallLinkType = Readonly<{
|
||||
|
||||
export type DefunctCallLinkRecord = Readonly<{
|
||||
roomId: string;
|
||||
rootKey: Uint8Array;
|
||||
adminKey: Uint8Array | null;
|
||||
rootKey: Uint8Array<ArrayBuffer>;
|
||||
adminKey: Uint8Array<ArrayBuffer> | null;
|
||||
storageID: string | null;
|
||||
storageVersion: number | null;
|
||||
storageUnknownFields: Uint8Array | null;
|
||||
storageUnknownFields: Uint8Array<ArrayBuffer> | null;
|
||||
storageNeedsSync: 1 | 0;
|
||||
}>;
|
||||
|
||||
@@ -121,8 +121,8 @@ export const defunctCallLinkRecordSchema = z.object({
|
||||
// DB Record
|
||||
export type CallLinkRecord = Readonly<{
|
||||
roomId: string;
|
||||
rootKey: Uint8Array | null;
|
||||
adminKey: Uint8Array | null;
|
||||
rootKey: Uint8Array<ArrayBuffer> | null;
|
||||
adminKey: Uint8Array<ArrayBuffer> | null;
|
||||
name: string;
|
||||
restrictions: number;
|
||||
expiration: number | null;
|
||||
@@ -131,7 +131,7 @@ export type CallLinkRecord = Readonly<{
|
||||
deletedAt?: number | null;
|
||||
storageID: string | null;
|
||||
storageVersion: number | null;
|
||||
storageUnknownFields: Uint8Array | null;
|
||||
storageUnknownFields: Uint8Array<ArrayBuffer> | null;
|
||||
storageNeedsSync: 1 | 0;
|
||||
}>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user