Strict done!!
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user