mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-02-17 11:48:32 -06:00
17 lines
293 B
JavaScript
17 lines
293 B
JavaScript
class AttachmentMeta {
|
|
/** @type {string} */
|
|
attachmentId;
|
|
/** @type {string} */
|
|
title;
|
|
/** @type {string} */
|
|
role;
|
|
/** @type {string} */
|
|
mime;
|
|
/** @type {int} */
|
|
position;
|
|
/** @type {string} */
|
|
dataFileName;
|
|
}
|
|
|
|
module.exports = AttachmentMeta;
|