Skip to content

Commit 31d4aa5

Browse files
author
Kamil Kisiela
committed
chore: fix lodash typings
1 parent 3e84d6d commit 31d4aa5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

global.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
declare module 'lodash.isequal' {
2-
import main = require('~lodash/index');
2+
import main = require('lodash');
33
export = main.isEqual;
44
}
55

66
declare module 'lodash.forin' {
7-
import main = require('~lodash/index');
7+
import main = require('lodash');
88
export = main.forIn;
99
}
1010

1111
declare module 'lodash.assign' {
12-
import main = require('~lodash/index');
12+
import main = require('lodash');
1313
export = main.assign;
1414
}
1515

1616
declare module 'lodash.omit' {
17-
import main = require('~lodash/index');
17+
import main = require('lodash');
1818
export = main.omit;
1919
}

0 commit comments

Comments
 (0)