Export Box

This commit is contained in:
Jordan Eldredge 2018-09-23 15:53:51 -07:00
parent 53481ba892
commit e94cdef100

View File

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