@wox-launcher/wox-plugin 0.0.68 → 0.0.69
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/package.json +1 -1
- package/types/index.d.ts +5 -0
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -189,6 +189,11 @@ export interface PublicAPI {
|
|
|
189
189
|
*/
|
|
190
190
|
OnGetDynamicSetting: (ctx: Context, callback: (key: string) => PluginSettingDefinitionItem) => Promise<void>
|
|
191
191
|
|
|
192
|
+
/**
|
|
193
|
+
* Register deep link callback
|
|
194
|
+
*/
|
|
195
|
+
OnDeepLink: (ctx: Context, callback: (arguments: Map<string, string>) => void) => Promise<void>
|
|
196
|
+
|
|
192
197
|
/**
|
|
193
198
|
* Register query commands
|
|
194
199
|
*/
|