diff --git a/demos/component-docs/actionSheet/actionSheet.ts b/demos/component-docs/actionSheet/actionSheet.ts index 1bc6e30585..4773e34ced 100644 --- a/demos/component-docs/actionSheet/actionSheet.ts +++ b/demos/component-docs/actionSheet/actionSheet.ts @@ -1,11 +1,11 @@ -import {IonicPlatform, Page, ActionSheet} from 'ionic/ionic'; +import {Platform, Page, ActionSheet} from 'ionic/ionic'; @Page({ templateUrl: 'actionSheet/actionSheet.html', }) export class ActionSheetPage { - constructor(actionSheet: ActionSheet, platform: IonicPlatform) { + constructor(actionSheet: ActionSheet, platform: Platform) { this.actionSheet = actionSheet; this.platform = platform; } diff --git a/demos/component-docs/index.ts b/demos/component-docs/index.ts index 2b0ef09285..c0184a6e08 100644 --- a/demos/component-docs/index.ts +++ b/demos/component-docs/index.ts @@ -1,4 +1,4 @@ -import {App, IonicApp, IonicPlatform, ActionSheet} from 'ionic/ionic'; +import {App, IonicApp, Platform, ActionSheet} from 'ionic/ionic'; import {Page, Config, Events} from 'ionic/ionic'; import {ActionSheetPage} from './actionSheet/actionSheet'; import * as helpers from './helpers'; @@ -11,7 +11,7 @@ class DemoApp { rootPage: any; - constructor(app: IonicApp, platform: IonicPlatform) { + constructor(app: IonicApp, platform: Platform) { this.app = app; this.platform = platform;