Skip to content

Commit

Permalink
fix(deeplinks): new result type
Browse files Browse the repository at this point in the history
  • Loading branch information
mlynch committed Jun 10, 2016
1 parent 3a2c8f3 commit 11226d7
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/plugins/deeplinks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down

0 comments on commit 11226d7

Please sign in to comment.