Ошибка машинописи Не удается найти имена 'Let' и 'body' в home.ts.
Я уже добавил
"types": [
"node"
],
"typesRoots" : [
"node_modules/@types"
],
в tsconfig.json
и импортировалэто ничего не меняет.
это сегмент кода
load(){
Let body = {
user_id: this.anggota.user_id,
aksi: 'profile'
};
this.postPvdr.postData(body, 'file_aksi.php').subscribe(data =>{
this.members = data.profiles;
console.log(data.profiles);
});
}