Files
testpdf/index.ts
2025-11-11 09:13:38 -08:00

15 lines
299 B
TypeScript

import { $typst } from "@myriaddreamin/typst.ts";
import fs from "fs";
const typstSource = `
= Hello
My name is Typst!
`;
const pdfBuffer = await $typst.pdf({ mainContent: typstSource });
if (!pdfBuffer) {
throw new Error("Failed to generate PDF");
}
fs.writeFileSync("output.pdf", pdfBuffer);