Remove spaces between union types to remain stylistically consistent

This commit is contained in:
Fabio Berger
2017-07-10 11:06:57 -07:00
committed by Leonid Logvinov
parent 4220f25e01
commit 08508afdb2

View File

@@ -46,10 +46,10 @@ declare module 'web3' {
namespace Web3 {
type ContractAbi = Array<AbiDefinition>;
type AbiDefinition = FunctionDescription | EventDescription;
type AbiDefinition = FunctionDescription|EventDescription;
interface FunctionDescription {
type: "function" | "constructor" | "fallback";
type: "function"|"constructor"|"fallback";
name?: string;
inputs: Array<FunctionParameter>;
outputs?: Array<FunctionParameter>;