我正在尝试使用ngstorage
在angularjs v1.x(typescript)项目中导入npm包@types/ngstorage index.d.ts
包含
declare namespace angular.storage {
export interface IStorageService {
}
}
如果我在我的.ts
文件
import * as angular from 'angular';
var storage: angular.storage.IStorageService;
我收到编译错误
命名空间angular并没有导出的成员存储
答案 0 :(得分:0)
最后我能够让它发挥作用
import { ngStorage } from 'ngStorage';
命名空间而不是包名称在执行导入时应该重要