@wox-launcher/wox-plugin 0.0.74 → 0.0.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/context.js +3 -1
- package/package.json +1 -1
- package/types/index.d.ts +5 -0
package/dist/context.js
CHANGED
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -205,6 +205,11 @@ export interface PublicAPI {
|
|
|
205
205
|
*/
|
|
206
206
|
OnDeepLink: (ctx: Context, callback: (arguments: MapString) => void) => Promise<void>
|
|
207
207
|
|
|
208
|
+
/**
|
|
209
|
+
* Register on load event
|
|
210
|
+
*/
|
|
211
|
+
OnUnload: (ctx: Context) => Promise<void>
|
|
212
|
+
|
|
208
213
|
/**
|
|
209
214
|
* Register query commands
|
|
210
215
|
*/
|