mirror of
https://github.com/zadam/trilium.git
synced 2026-06-01 04:52:16 +02:00
6 lines
105 B
TypeScript
6 lines
105 B
TypeScript
export interface Blob {
|
|
blobId: string;
|
|
content: string | Buffer;
|
|
utcDateModified: string;
|
|
}
|