mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 10:55:55 +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;
|