/** * 사각형을 의미합니다. */ export interface Rect { left: number; top: number; right: number; bottom: number; }