mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 14:20:12 +00:00
Don't hardcode module name in @types/lodash (#43684)
This forbit us from doing `yarn add @types/lodash3@npm:@types/lodash@^3.0.0` and use `lodash3` as module name.
This commit is contained in:
7
types/lodash/v3/index.d.ts
vendored
7
types/lodash/v3/index.d.ts
vendored
@@ -5,7 +5,7 @@
|
||||
|
||||
declare var _: _.LoDashStatic;
|
||||
|
||||
declare module _ {
|
||||
declare namespace _ {
|
||||
interface LoDashStatic {
|
||||
/**
|
||||
* Creates a lodash object which wraps the given value to enable intuitive method chaining.
|
||||
@@ -15912,6 +15912,5 @@ declare module _ {
|
||||
}
|
||||
}
|
||||
|
||||
declare module "lodash" {
|
||||
export = _;
|
||||
}
|
||||
export = _;
|
||||
export as namespace _;
|
||||
|
||||
Reference in New Issue
Block a user