File 'app/hero.ts' is not a module error in the console, where to store interfaces files in directory structure with angular2?

后端 未结 24 1982
无人共我
无人共我 2020-12-13 07:55

I am doing the angular2 tutorial at this address: https://angular.io/docs/ts/latest/tutorial/toh-pt3.html I have put the hero interface in a single

24条回答
  •  庸人自扰
    2020-12-13 08:28

    Don't forget to export your class or interface as well.

    export interface Sort {
        value: string;
        viewValue: string;
    }
    

提交回复
热议问题