13 lines
225 B
JavaScript
Raw Normal View History

2020-05-22 09:38:30 +02:00
"use strict";
class Expression {
/**
* @param {NoteSet} inputNoteSet
2020-05-22 09:38:30 +02:00
* @param {object} searchContext
* @return {NoteSet}
2020-05-22 09:38:30 +02:00
*/
execute(inputNoteSet, searchContext) {}
2020-05-22 09:38:30 +02:00
}
module.exports = Expression;