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