1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-20 15:18:08 +02:00

Rename *.d.ts to *.d.mts. Close #17241

Add a type test for legacy.

- https://www.typescriptlang.org/docs/handbook/modules/reference.html#file-extension-substitution
This commit is contained in:
Takashi Tamura 2023-11-10 17:27:04 +09:00
parent 1b88aad0db
commit 61ed77cfb4
10 changed files with 41 additions and 12 deletions

23
test/types/legacy.ts Normal file
View file

@ -0,0 +1,23 @@
import { getDocument } from "pdfjs-dist/legacy/build/pdf.mjs";
import { EventBus } from "pdfjs-dist/legacy/web/pdf_viewer.mjs";
class MainTest {
eventBus: EventBus;
task: ReturnType<typeof getDocument> | undefined;
constructor(public file: string) {
this.eventBus = new EventBus();
}
loadPdf() {
this.task = getDocument("file://" + this.file);
return this.task.promise;
}
}
// This is actually never called, as the test only consists in compiling the file.
// The compilation will crawl through all files and make sure that the types are consistent.
const mt = new MainTest("../pdfs/basicapi.pdf");
mt.loadPdf().then(() => {
console.log("loaded");
});

View file

@ -1,5 +1,5 @@
import { getDocument } from "pdfjs-dist";
import { EventBus } from "pdfjs-dist/web/pdf_viewer.component";
import { EventBus } from "pdfjs-dist/web/pdf_viewer.mjs";
class MainTest {
eventBus: EventBus;

6
test/types/package.json Normal file
View file

@ -0,0 +1,6 @@
{
"type": "module",
"dependencies": {
"pdfjs-dist": "../../build/typestest/"
}
}

View file

@ -3,7 +3,7 @@
"outDir": "../../build/tmp",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"moduleResolution": "node10",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ESNext",
@ -17,10 +17,10 @@
],
"paths": {
"pdfjs-dist": ["../../build/typestest"],
"pdfjs-dist/*": ["../../build/typestest/types/*"]
"pdfjs-dist/*": ["../../build/typestest/*"]
}
},
"files": [
"main.ts"
"exclude": [
"node_modules"
]
}