1 2 3 4 5 6 7 8 9
/** * Image output format for Node.js rendering * @enum {string} ImageType */ export const ImageType = { PNG: "png", JPEG: "jpeg", PDF: "pdf", };