mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 03:46:37 +01:00
12 lines
190 B
JavaScript
12 lines
190 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
class Expression {
|
||
|
|
/**
|
||
|
|
* @param {NoteSet} noteSet
|
||
|
|
* @param {object} searchContext
|
||
|
|
*/
|
||
|
|
execute(noteSet, searchContext) {}
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = Expression;
|