Interface PrintCircularOptions

interface PrintCircularOptions {
    fit?:
        | "fill"
        | "contain"
        | "cover"
        | "none";
}

Properties

Properties

fit?:
    | "fill"
    | "contain"
    | "cover"
    | "none"

The fit options, this is similar to CSS's object-fit.