Я новичок в разработке ионных приложений, и это очень простой вопрос, я знаю, что я сталкиваюсь с этой проблемой, так как однажды я загружаю одно приложение из Интернета, и когда я открываю код, отображаются сообщения об ошибках, т.е. не можетиспользуйте namespace как тип ionic , почему я получаю это сообщение об ошибке, может кто-то мне поможет, пожалуйста
код:
import { Component, ViewChild } from '@angular/core';
import { Platform, MenuController, Nav, App } from 'ionic-angular';
import { StatusBar } from '@ionic-native/status-bar';
import { SplashScreen } from '@ionic-native/splash-screen';
import { LearnFeedPage } from '../pages/learn-feed/learn-feed';
@Component({
selector: 'app-root',
templateUrl: 'app.html'
})
export class MyApp {
@ViewChild(Nav) nav: Nav;
// make LearnFeedPage the root (or first) page
rootPage: any = LearnFeedPage;
pages: Array<{title: string, component: any, params: any}>;
constructor(
platform: Platform,
statusBar: StatusBar,
splashScreen: SplashScreen,
public menu: MenuController,
public app: App
) {
platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
statusBar.styleDefault();
splashScreen.hide();
});