hrms-manual/node_modules/@tato30/vue-pdf/src/env.d.ts
2023-09-06 14:51:44 +07:00

20 lines
371 B
TypeScript

declare module "*?worker" {
const workerConstructor: {
new(): Worker
};
export default workerConstructor;
}
declare module "*?url" {
const url: string;
export default url;
}
declare module "*?worker&url" {
const workerUrl: string;
export default workerUrl;
}
declare module "pdfjs-dist/build/pdf" {
export * from 'pdfjs-dist'
}