mirror of
https://github.com/zadam/trilium.git
synced 2026-01-01 04:04:25 +01:00
11 lines
192 B
TypeScript
11 lines
192 B
TypeScript
interface AttachmentMeta {
|
|
attachmentId?: string;
|
|
title: string;
|
|
role: string;
|
|
mime: string;
|
|
position?: number;
|
|
dataFileName: string;
|
|
}
|
|
|
|
export default AttachmentMeta;
|