ReSharper EAP dropped this line; bad boy.
This commit is contained in:
parent
756e5c00f4
commit
2d4b71ff87
@ -1,6 +1,6 @@
|
||||
'use strict';
|
||||
import batch = require('./batch');
|
||||
|
||||
batch(process.argv, err => {
|
||||
if (err) console.error(err);
|
||||
batch(process.argv, (err: any) => {
|
||||
if (err) console.error(err.stack || err);
|
||||
});
|
||||
@ -2,6 +2,7 @@
|
||||
'use strict';
|
||||
export = main;
|
||||
import crypto = require('crypto');
|
||||
import bigInt = require('big-integer');
|
||||
import zlib = require('zlib');
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user