mirror of
https://github.com/zadam/trilium.git
synced 2025-12-12 10:24:23 +01:00
6 lines
105 B
TypeScript
6 lines
105 B
TypeScript
export interface Blob {
|
|
blobId: string;
|
|
content: string | Buffer;
|
|
utcDateModified: string;
|
|
}
|