mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
21 lines
481 B
JavaScript
21 lines
481 B
JavaScript
import NoteShort from './note_short.js';
|
|
|
|
/**
|
|
* Represents full note, specifically including note's content.
|
|
*/
|
|
class NoteFull extends NoteShort {
|
|
constructor(treeCache, row) {
|
|
super(treeCache, row);
|
|
|
|
/** @param {string} */
|
|
this.content = row.content;
|
|
|
|
/** @param {string} */
|
|
this.utcDateCreated = row.utcDateCreated;
|
|
|
|
/** @param {string} */
|
|
this.utcDateModified = row.utcDateModified;
|
|
}
|
|
}
|
|
|
|
export default NoteFull; |