Type Alias AsukaProduct3DPrintArea

AsukaProduct3DPrintArea: {
    canvasSize?: {
        height: number;
        width: number;
    };
    edgeWrap?:
        | "none"
        | "horizontal"
        | "vertical"
        | "both"
        | string;
    id: string;
    label?: string;
    locked?: boolean;
    metadata?: Record<string, unknown>;
    mode?: "texture" | "surface";
    objects?: AsukaProduct3DPrintAreaObject[];
    targetMeshId?: string;
    textureSlot?: string;
    uvBounds?: {
        height: number;
        width: number;
        x: number;
        y: number;
    };
    visible?: boolean;
    [key: string]: unknown;
}