export interface _ProjectBudgetHistories {
createdBy?: string ;
id?: number;
budgetYear? : number ;
logicalFrameworkId? : number ;
projectId?: number ;
amount?: number ;
mooe?: number ;
co?: number;
}
pbHistories : _ProjectBudgetHistories;
let co =500;
let mooe =1000;
this.pbHistories.co = co;
this.pbHistories.mooe = mooe;
console.log(this.pbHistories);
это ошибка TypeError: Невозможно установить свойство 'co' из неопределенного TypeError: Невозможно установить свойство 'mooe' из неопределенного
=== >> как обновить только mooe и co???