使用 webpack 导入 ngstorage

import ngstorage with webpack

我正在尝试导入 npm 包 ngstorage in my angularjs v1.x (typescript) project using @types/ngstorage

index.d.ts 包含

declare namespace angular.storage {

        export interface IStorageService {
        }
}

如果我在 .ts 文件中喜欢下面的内容

import * as angular from 'angular';

var storage: angular.storage.IStorageService;

我遇到编译错误

namespace angular and no exported member storage

我终于成功了

        import { ngStorage } from 'ngStorage';

命名空间而不是包名称在执行导入时应该很重要