DefinitelyTyped/types/pdf2image/pdf2image-tests.ts
2018-11-08 15:38:25 +08:00

9 lines
190 B
TypeScript

import { convertPDF } from 'pdf2image';
// converts all the pages of the given pdf using the default options
convertPDF('example.pdf').then(
(pageList) => {
console.log(pageList);
}
);