diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-29 00:02:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-29 05:02:14 +0000 |
commit | 8b68504b3b95d0647b4305a43d7b326b801e1936 (patch) | |
tree | 106cfa2eb67bb5630c40dc63a4b8d9b2e1d8fa6d /ext/js/app/popup-proxy.js | |
parent | 6a072dfdacf26d309bf8cd570c05f4d4b57c9af2 (diff) |
Display API safety (#479)
* Remove unused
* Add TODOs
* Rename
* Initial setup
* More updates
* Simplify naming
* Set up window API
* Remove type
* Move type
* Update type
Diffstat (limited to 'ext/js/app/popup-proxy.js')
-rw-r--r-- | ext/js/app/popup-proxy.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/js/app/popup-proxy.js b/ext/js/app/popup-proxy.js index d141d35b..2821d774 100644 --- a/ext/js/app/popup-proxy.js +++ b/ext/js/app/popup-proxy.js @@ -297,6 +297,7 @@ export class PopupProxy extends EventDispatcher { // Private + // TODO : Type safety /** * @template {import('core').SerializableObject} TParams * @template [TReturn=unknown] @@ -308,6 +309,7 @@ export class PopupProxy extends EventDispatcher { return yomitan.crossFrame.invoke(this._frameId, action, params); } + // TODO : Type safety /** * @template {import('core').SerializableObject} TParams * @template [TReturn=unknown] |