From 7c39e91b686ea79f6ba79080a2a6f4a5a75b329b Mon Sep 17 00:00:00 2001 From: Guille Date: Fri, 8 Jul 2016 00:51:17 +0200 Subject: [PATCH] refactor(IonicDeeplink): --- src/plugins/deeplinks.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/plugins/deeplinks.ts b/src/plugins/deeplinks.ts index 05ab2fd27..ab6172c2f 100644 --- a/src/plugins/deeplinks.ts +++ b/src/plugins/deeplinks.ts @@ -1,5 +1,6 @@ -import {Plugin, Cordova} from './plugin'; -import {Observable} from 'rxjs/Observable'; +import { Cordova, Plugin } from './plugin'; +import { Observable } from 'rxjs/Observable'; + export interface DeeplinkMatch { /** @@ -17,7 +18,7 @@ export interface DeeplinkMatch { * any internal native data available as "extras" at the time * the route was matched (for example, Facebook sometimes adds extra data) */ - $link: any; + $link: any; } /** @@ -52,7 +53,7 @@ export class Deeplinks { @Cordova({ observable: true }) - static route(paths): Observable {return; } + static route(paths): Observable { return; } /** * @@ -75,5 +76,5 @@ export class Deeplinks { @Cordova({ observable: true }) - static routeWithNavController(navController, paths): Observable {return; } + static routeWithNavController(navController, paths): Observable { return; } }