Fix linter errors

This commit is contained in:
Leonid Logvinov
2018-02-06 17:15:20 +01:00
committed by Amir Bandeali
parent 55312d00ef
commit fcbe24a126
2 changed files with 3 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
* This file is auto-generated using abi-gen. Don't edit directly.
* Templates can be found at https://github.com/0xProject/0x.js/tree/development/packages/0x.js/contract_templates.
*/
// tslint:disable:no-consecutive-blank-lines
// tslint:disable-next-line:no-unused-variable
import { TxData, TxDataPayable } from '@0xproject/types';
import { BigNumber, classUtils, promisify } from '@0xproject/utils';

View File

@@ -1,5 +1,5 @@
export interface {{name}}ContractEventArgs {
{{#each inputs}}
{{name}}: {{#returnType type}}{{/returnType}},
{{name}}: {{#returnType type}}{{/returnType}};
{{/each}}
};
}