From 11226d7d51c2e4497985a57854b191fca6bf2da6 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Fri, 10 Jun 2016 13:32:42 -0500 Subject: [PATCH] fix(deeplinks): new result type --- src/plugins/deeplinks.ts | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/plugins/deeplinks.ts b/src/plugins/deeplinks.ts index 5bb060f69..d27d7da67 100644 --- a/src/plugins/deeplinks.ts +++ b/src/plugins/deeplinks.ts @@ -5,14 +5,19 @@ export interface DeeplinkMatch { /** * 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 * the route was matched (for example, Facebook sometimes adds extra data) */ - args: any; + $link: any; } /**