mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-28 18:42:28 +08: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;
|