trilium/src/public/javascripts/entities/note_full.js
2019-02-14 20:56:33 +01:00

21 lines
477 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.noteContent = row.noteContent;
/** @param {string} */
this.dateCreated = row.dateCreated;
/** @param {string} */
this.dateModified = row.dateModified;
}
}
export default NoteFull;