mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 04:29:01 +01:00
15 lines
352 B
TypeScript
15 lines
352 B
TypeScript
"use strict";
|
|
|
|
import type NoteSet from "../note_set.js";
|
|
import type SearchContext from "../search_context.js";
|
|
|
|
import Expression from "./expression.js";
|
|
|
|
class TrueExp extends Expression {
|
|
execute(inputNoteSet: NoteSet, executionContext: {}, searchContext: SearchContext): NoteSet {
|
|
return inputNoteSet;
|
|
}
|
|
}
|
|
|
|
export default TrueExp;
|