mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
190 B
TypeScript
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);
|
|
}
|
|
);
|