ReSharper EAP dropped this line; bad boy.

This commit is contained in:
Roel van Uden 2015-02-07 13:18:13 +01:00
parent 756e5c00f4
commit 2d4b71ff87
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
'use strict'; 'use strict';
import batch = require('./batch'); import batch = require('./batch');
batch(process.argv, err => { batch(process.argv, (err: any) => {
if (err) console.error(err); if (err) console.error(err.stack || err);
}); });

View File

@ -2,6 +2,7 @@
'use strict'; 'use strict';
export = main; export = main;
import crypto = require('crypto'); import crypto = require('crypto');
import bigInt = require('big-integer');
import zlib = require('zlib'); import zlib = require('zlib');
/** /**