Update docs in bounding_box.d.ts

This commit is contained in:
Francesco Gonzales 2023-05-22 00:33:04 +02:00 committed by GitHub
parent 7c28c5d58f
commit 449aadfe11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,9 +16,9 @@
/** An integer bounding box, axis aligned. */
export declare interface BoundingBox {
/** The X coordinate of the top-left corner, in pixels. */
/** The X coordinate of the bottom-left corner, in pixels. */
originX: number;
/** The Y coordinate of the top-left corner, in pixels. */
/** The Y coordinate of the bottom-left corner, in pixels. */
originY: number;
/** The width of the bounding box, in pixels. */
width: number;