Replace typescript compiler with native tsgo compiler

This commit is contained in:
Jamie
2026-03-18 11:26:18 -07:00
committed by GitHub
parent 5e6af4708b
commit c90ca2b4e0
207 changed files with 1819 additions and 1270 deletions

View File

@@ -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;
}>;