mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 02:52:27 +08:00
13 lines
225 B
JavaScript
13 lines
225 B
JavaScript
"use strict";
|
|
|
|
class Expression {
|
|
/**
|
|
* @param {NoteSet} inputNoteSet
|
|
* @param {object} searchContext
|
|
* @return {NoteSet}
|
|
*/
|
|
execute(inputNoteSet, searchContext) {}
|
|
}
|
|
|
|
module.exports = Expression;
|