Normalize messages table

This commit is contained in:
Fedor Indutny
2025-01-16 13:34:35 -08:00
committed by GitHub
parent 9bec59b70a
commit 630a1fcc89
18 changed files with 490 additions and 240 deletions

View File

@@ -11,7 +11,8 @@ export type ArrayQuery = Array<ReadonlyArray<null | number | bigint | string>>;
export type Query = {
[key: string]: null | number | bigint | string | Uint8Array;
};
export type JSONRows = Array<{ readonly json: string }>;
export type JSONRow = Readonly<{ json: string }>;
export type JSONRows = Array<JSONRow>;
export type TableType =
| 'attachment_downloads'