Interface GraphicsBoardOptions

interface GraphicsBoardOptions {
    boundingBox?: {
        bottom: number;
        left: number;
        right: number;
        top: number;
    };
}

Properties

Properties

boundingBox?: {
    bottom: number;
    left: number;
    right: number;
    top: number;
}