Enable explicit-member-accessibility and no-parameter-properties

This commit is contained in:
Simon Warta
2020-09-29 17:29:00 +02:00
parent 5e79100fe3
commit ed628a70fa
7 changed files with 20 additions and 12 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ export class GasPrice {
public readonly amount: Decimal;
public readonly denom: string;
constructor(amount: Decimal, denom: string) {
public constructor(amount: Decimal, denom: string) {
this.amount = amount;
this.denom = denom;
}