mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-02 21:42:15 +08:00
15 lines
256 B
JavaScript
15 lines
256 B
JavaScript
class AttachmentMeta {
|
|
/** @type {string} */
|
|
attachmentId;
|
|
/** @type {string} */
|
|
title;
|
|
/** @type {string} */
|
|
role;
|
|
/** @type {string} */
|
|
mime;
|
|
/** @type {string} */
|
|
dataFileName;
|
|
}
|
|
|
|
module.exports = AttachmentMeta;
|