aboutsummaryrefslogtreecommitdiff
path: root/src/image_type.js
blob: c4624552bcbf4cdb5b835aeea36d4e64f798e5a2 (plain)
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",
};