mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
"use strict";
|
|
|
|
class Expression {
|
|
/**
|
|
* @param {NoteSet} inputNoteSet
|
|
* @param {object} executionContext
|
|
* @return {NoteSet}
|
|
*/
|
|
execute(inputNoteSet, executionContext) {}
|
|
}
|
|
|
|
module.exports = Expression;
|