Apply prettier config

This commit is contained in:
Leonid Logvinov
2017-12-22 15:05:32 +01:00
parent 9a96e8c704
commit e744e4cd98
284 changed files with 6783 additions and 6205 deletions

View File

@@ -1,4 +1,4 @@
import {BigNumber} from 'bignumber.js';
import { BigNumber } from 'bignumber.js';
import * as Web3 from 'web3';
export interface TxData {
@@ -19,9 +19,9 @@ export interface TransactionReceipt {
transactionIndex: number;
from: string;
to: string;
status: null|0|1;
status: null | 0 | 1;
cumulativeGasUsed: number;
gasUsed: number;
contractAddress: string|null;
contractAddress: string | null;
logs: Web3.LogEntry[];
}