Remove spaces between union types to remain stylistically consistent
This commit is contained in:
committed by
Leonid Logvinov
parent
4220f25e01
commit
08508afdb2
4
packages/web3-typescript-typings/index.d.ts
vendored
4
packages/web3-typescript-typings/index.d.ts
vendored
@@ -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>;
|
||||
|
Reference in New Issue
Block a user