diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-27 01:40:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-27 06:40:25 +0000 |
commit | 0094ff7babab6839ccef4c82fa46b8aa4f14198f (patch) | |
tree | 3beeb558b41a04948ff82cc1c34f5e44df65825e /ext/js/comm/api.js | |
parent | 7cc20964b5ae69967945a802c4137be9052ea93b (diff) |
API map updates (#458)
* Rename
* Fix incorrect union types
* Update type names
* Fix types
Diffstat (limited to 'ext/js/comm/api.js')
-rw-r--r-- | ext/js/comm/api.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/comm/api.js b/ext/js/comm/api.js index c0cfae16..c2351538 100644 --- a/ext/js/comm/api.js +++ b/ext/js/comm/api.js @@ -373,7 +373,7 @@ export class API { * @returns {Promise<import('api').ApiReturn<TAction>>} */ _invoke(action, params) { - /** @type {import('api').MessageAny} */ + /** @type {import('api').ApiMessage<TAction>} */ const data = {action, params}; return new Promise((resolve, reject) => { try { |