diff --git a/types/picturefill/index.d.ts b/types/picturefill/index.d.ts index f41e46a3d7..3c12117841 100644 --- a/types/picturefill/index.d.ts +++ b/types/picturefill/index.d.ts @@ -14,6 +14,5 @@ declare namespace Picturefill { declare function picturefill(arg?: Picturefill.EvaluateArg): void; -declare module 'picturefill' { - export = picturefill; -} +export = picturefill; +export as namespace picturefill; diff --git a/types/picturefill/tslint.json b/types/picturefill/tslint.json index e765bc9e16..d88586e5bd 100644 --- a/types/picturefill/tslint.json +++ b/types/picturefill/tslint.json @@ -1,6 +1,3 @@ { - "extends": "dtslint/dt.json", - "rules": { - "no-single-declare-module": false - } + "extends": "dtslint/dt.json" }