本文介绍了使用webpack导入ngstorage的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在我的angularjs v1.x(typescript)中导入npm包项目使用

I am trying to import npm package ngstorage in my angularjs v1.x (typescript) project using @types/ngstorage

index.d.ts 包含

declare namespace angular.storage {

        export interface IStorageService {
        }
}

如果我在 .ts 文件中如下所示

if I do like below in my .ts files

import * as angular from 'angular';

var storage: angular.storage.IStorageService;

我收到编译错误


推荐答案

最后我能够让它运作

        import { ngStorage } from 'ngStorage';

进行导入时命名空间而不是包名称

the namespace and not the package name should matter when doing an import

这篇关于使用webpack导入ngstorage的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-25 21:54