Add apiTemplateRender back to mixed api.js

This commit is contained in:
toasted-nutbread 2020-02-14 20:11:40 -05:00
parent 6194f9f585
commit 61c6a753ce

View File

@ -65,6 +65,10 @@ function apiNoteView(noteId) {
return _apiInvoke('noteView', {noteId});
}
function apiTemplateRender(template, data) {
return _apiInvoke('templateRender', {data, template});
}
function apiAudioGetUrl(definition, source, optionsContext) {
return _apiInvoke('audioGetUrl', {definition, source, optionsContext});
}