Strict done!!

This commit is contained in:
2020-11-23 16:42:54 +05:30
parent af343cb7f9
commit afe746ecdc
142 changed files with 1258 additions and 907 deletions
@@ -2,5 +2,13 @@ export class NetTransactionsItem {
type: string;
name: string;
debit: number;
credit: string;
credit: number;
public constructor(init?: Partial<NetTransactionsItem>) {
this.type = '';
this.name = '';
this.debit = 0;
this.credit = 0;
Object.assign(this, init);
}
}