Export Box

This commit is contained in:
Jordan Eldredge 2018-09-23 15:53:51 -07:00
parent 669df38197
commit a6b8d5a64e

View file

@ -13,7 +13,7 @@ interface BoundingBox {
height: number;
}
interface Box extends Point {
export interface Box extends Point {
width: number;
height: number;
}