Use single instead of double quotes by convention
This commit is contained in:
committed by
Leonid Logvinov
parent
08508afdb2
commit
14e94a5376
4
packages/web3-typescript-typings/index.d.ts
vendored
4
packages/web3-typescript-typings/index.d.ts
vendored
@@ -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;
|
||||
|
Reference in New Issue
Block a user