Angular 2 - Import html2canvas
问题 I have installed html2canvas on my angular 2 project using npm install html2canvas --save . If I now go to any file and write import * as html2canvas from 'html2canvas' it gives the error: Cannot find module 'html2canvas' My package file looks like this: { ... "scripts": { ... }, "dependencies": { ... "html2canvas": "^0.5.0-beta4", ... }, "devDependencies": { ... } } The file on which I'm trying to import the html2canvas is: import { Injectable } from '@angular/core'; import * as jsPDF from