Use single instead of double quotes by convention

This commit is contained in:
Fabio Berger
2017-07-10 11:07:37 -07:00
committed by Leonid Logvinov
parent 08508afdb2
commit 14e94a5376

View File

@@ -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;