fix(demos): fix actionSheet import error

This commit is contained in:
Drew Rygh
2015-10-17 22:50:06 -05:00
parent 08808586bb
commit a63f22c56f

View File

@@ -1,13 +1,12 @@
import {Platform, Page, ActionSheet} from 'ionic/ionic';
import {IonicPlatform, Page, ActionSheet} from 'ionic/ionic';
@Page({
templateUrl: 'actionSheet/actionSheet.html',
})
export class ActionSheetPage {
constructor(actionSheet: ActionSheet, platform: Platform) {
constructor(actionSheet: ActionSheet, platform: IonicPlatform) {
this.actionSheet = actionSheet;
console.log('actionSheet', actionSheet);
this.platform = platform;
}