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