mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-22 01:19:36 +08:00
fix(deeplinks): new result type
This commit is contained in:
parent
3a2c8f3e26
commit
11226d7d51
@ -5,14 +5,19 @@ export interface DeeplinkMatch {
|
|||||||
/**
|
/**
|
||||||
* The route info for the matched route
|
* The route info for the matched route
|
||||||
*/
|
*/
|
||||||
routeInfo: any;
|
$route: any;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The arguments passed to the route through GET params along with
|
* Any arguments passed either through route parameters or GET parameters
|
||||||
|
*/
|
||||||
|
$args: any;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The deeplink object processed from the plugin, along with any
|
||||||
* any internal native data available as "extras" at the time
|
* any internal native data available as "extras" at the time
|
||||||
* the route was matched (for example, Facebook sometimes adds extra data)
|
* the route was matched (for example, Facebook sometimes adds extra data)
|
||||||
*/
|
*/
|
||||||
args: any;
|
$link: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user