mirror of
https://github.com/zadam/trilium.git
synced 2025-11-18 06:24:30 +01:00
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
export default interface AttachmentMeta {
|
|
attachmentId?: string;
|
|
title: string;
|
|
role: string;
|
|
mime: string;
|
|
position?: number;
|
|
dataFileName: string;
|
|
}
|