mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-01-05 20:39:49 -06:00
11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
interface AttachmentMeta {
|
|
attachmentId?: string;
|
|
title: string;
|
|
role: string;
|
|
mime: string;
|
|
position?: number;
|
|
dataFileName: string;
|
|
}
|
|
|
|
export = AttachmentMeta;
|