mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
9 lines
202 B
TypeScript
9 lines
202 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);
|
|
}
|
|
);
|