feat(nbstore): add blob sync frontend (#9084)

This commit is contained in:
EYHN
2024-12-11 12:39:26 +00:00
parent a67fbc9448
commit 0c0722c650
3 changed files with 54 additions and 3 deletions

View File

@@ -6,14 +6,14 @@ export interface BlobRecord {
key: string;
data: Uint8Array;
mime: string;
createdAt: Date;
createdAt?: Date;
}
export interface ListedBlobRecord {
key: string;
mime: string;
size: number;
createdAt: Date;
createdAt?: Date;
}
export abstract class BlobStorage<