From 14e94a5376419da54b5a3b4c3732ba9836ed5831 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Mon, 10 Jul 2017 11:07:37 -0700 Subject: Use single instead of double quotes by convention --- packages/web3-typescript-typings/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages') 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; outputs?: Array; @@ -64,7 +64,7 @@ declare module 'web3' { } interface EventDescription { - type: "event"; + type: 'event'; name: string; inputs: Array; anonymous: boolean; -- cgit v1.2.3