fix(deeplinks): new result type

This commit is contained in:
Max Lynch 2016-06-10 13:32:42 -05:00
parent 3a2c8f3e26
commit 11226d7d51

View File

@ -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;
} }
/** /**