diff --git a/types/lodash/v3/index.d.ts b/types/lodash/v3/index.d.ts index aba8a60fe4..b3b409e89b 100644 --- a/types/lodash/v3/index.d.ts +++ b/types/lodash/v3/index.d.ts @@ -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 _;