如何导入ng-file-upload

时间:2017-09-17 12:28:12

标签: angularjs typescript ng-file-upload

我正在尝试从包含

@types/ng-file-upload/index.d.ts导入模块
declare var angularFileUploadDefaultExport: string;
export = angularFileUploadDefaultExport;

declare module 'angular' {
    export namespace angularFileUpload {
        interface ImageDimensions {

        }
    }
}

现在如果我导入它如下

    import * as ngFileUpload from 'ng-file-upload';
    or
    import 'ng-file-upload';
    or
    import ngFileUpload = require('ng-file-upload');

但是在尝试访问ngFileUpload.ImageDimensions

时,webpack仍然出错

导入使用module ??

定义的包的正确方法是什么

1 个答案:

答案 0 :(得分:0)

鉴于它是在角度模块declare module 'angular' {内定义的,因此无需导入它......只需将其直接用作angular.angularFileUpload