No se encontró ningún archivo de declaración para el módulo ‘jspdf’. ‘D:/proyectoTitulaciòn/angularPDF/WordPdf/node_modules/jspdf/dist/jspdf.min.js’ tiene un tipo “any” de forma implícita.
pequeño ejemplo:
import { Component } from '@angular/core';
import jspdf from 'jspdf';
import html2canvas from 'html2canvas';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'WordPdf';
constructor() {
this.downloadPDF();
}
public downloadPDF(): void {
const doc = new jspdf();
doc.text('Hello world!', 10, 10);
doc.save('hello-world.pdf');
}
}