mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-12 20:02:28 +08:00
6 lines
105 B
TypeScript
6 lines
105 B
TypeScript
export interface Blob {
|
|
blobId: string;
|
|
content: string | Buffer;
|
|
utcDateModified: string;
|
|
}
|