mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-09 15:30:45 +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;
|