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