Skip to content

Commit

Permalink
chore: fix lodash typings (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored Aug 16, 2016
1 parent 3e84d6d commit f49b5d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions global.d.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
declare module 'lodash.isequal' {
import main = require('~lodash/index');
import main = require('lodash');
export = main.isEqual;
}

declare module 'lodash.forin' {
import main = require('~lodash/index');
import main = require('lodash');
export = main.forIn;
}

declare module 'lodash.assign' {
import main = require('~lodash/index');
import main = require('lodash');
export = main.assign;
}

declare module 'lodash.omit' {
import main = require('~lodash/index');
import main = require('lodash');
export = main.omit;
}

0 comments on commit f49b5d1

Please sign in to comment.