mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 18:12:29 +08:00
12 lines
490 B
JavaScript
12 lines
490 B
JavaScript
var Command;
|
|
(function(Command) {
|
|
Command[Command["jumpToNote"] = 0] = "jumpToNote";
|
|
Command[Command["searchNotes"] = 1] = "searchNotes";
|
|
Command[Command["createNoteIntoInbox"] = 2] = "createNoteIntoInbox";
|
|
Command[Command["showRecentChanges"] = 3] = "showRecentChanges";
|
|
Command[Command["showOptions"] = 4] = "showOptions";
|
|
Command[Command["createAiChat"] = 5] = "createAiChat";
|
|
})(Command || (Command = {}));
|
|
export { };
|
|
|
|
//# sourceMappingURL=hidden_subtree.js.map
|