Fix more errors, Uint8Array<ArrayBuffer> disambiguation

This commit is contained in:
2025-10-09 16:43:59 +02:00
parent cbdd93e6ba
commit 6717e6b0de
5 changed files with 22 additions and 9 deletions

View File

@@ -40,7 +40,7 @@ export interface AttachmentTable extends AttachmentData, SystemInformation {
export interface FileTable {
sha256: ColumnType<Sha256, Sha256, never>;
data: ColumnType<Uint8Array, Uint8Array, never>;
data: ColumnType<Uint8Array<ArrayBuffer>, Uint8Array<ArrayBuffer>, never>;
}
export interface OptionTable {