Answer the question
In order to leave comments, you need to log in
How to include a Typescript file in an Angularjs Nativescript project?
I want to add a file but I get an error
Файл 1
class GlobalDataClass {
public static articles=[1,2,3,4,5];
}
export {GlobalDataClass};
Файл 2
import {GlobalDataClass} from "Data"
@Component({
selector: "Home",
moduleId: module.id,
templateUrl: "./home.component.html",
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {
public articles= GlobalDataClass.articles;
ngOnInit(): void {
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question