diff options
-rw-r--r-- | packages/web3-typescript-typings/index.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/web3-typescript-typings/index.d.ts b/packages/web3-typescript-typings/index.d.ts index 808a39a66..7089556f4 100644 --- a/packages/web3-typescript-typings/index.d.ts +++ b/packages/web3-typescript-typings/index.d.ts @@ -49,7 +49,7 @@ declare module 'web3' { type AbiDefinition = FunctionDescription|EventDescription; interface FunctionDescription { - type: "function"|"constructor"|"fallback"; + type: 'function'|'constructor'|'fallback'; name?: string; inputs: Array<FunctionParameter>; outputs?: Array<FunctionParameter>; @@ -64,7 +64,7 @@ declare module 'web3' { } interface EventDescription { - type: "event"; + type: 'event'; name: string; inputs: Array<EventParameter>; anonymous: boolean; |