diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-01-20 21:47:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 02:47:46 +0000 |
commit | 2de19c46a3c570855fe1b803fe677cee0b4e4036 (patch) | |
tree | c2fae14eeea30e25752d6e969e7e74408e93fa96 /types/ext | |
parent | 39265a43d969e1201cb5267789967b57835059b1 (diff) |
Improve handling of the applicationReady message (#552)
Diffstat (limited to 'types/ext')
-rw-r--r-- | types/ext/api.d.ts | 4 | ||||
-rw-r--r-- | types/ext/application.d.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/types/ext/api.d.ts b/types/ext/api.d.ts index 3a639a9c..4f1b9026 100644 --- a/types/ext/api.d.ts +++ b/types/ext/api.d.ts @@ -112,6 +112,10 @@ export type GetTermFrequenciesDetailsTermReadingListItem = { }; type ApiSurface = { + applicationReady: { + params: void; + return: void; + }; optionsGet: { params: { optionsContext: Settings.OptionsContext; diff --git a/types/ext/application.d.ts b/types/ext/application.d.ts index 3adc53f3..903c8e45 100644 --- a/types/ext/application.d.ts +++ b/types/ext/application.d.ts @@ -46,10 +46,6 @@ export type ApiSurface = { }; return: void; }; - applicationReady: { - params: void; - return: void; - }; applicationIsReady: { params: void; return: boolean; |