mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-09 17:52:32 +08:00
11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
![]() |
"use strict";
|
||
|
|
||
|
function exportSubTree(noteId) {
|
||
|
const url = getHost() + "/api/export/" + noteId;
|
||
|
|
||
|
download(url);
|
||
|
}
|
||
|
|
||
|
function importSubTree(noteId) {
|
||
|
|
||
|
}
|