12 lines
190 B
JavaScript
Raw Normal View History

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