import type { IRectBase } from '../base'; import type { ILabelable } from './i-labelable'; import type { IStatusable } from './i-statusable'; import type { IUserDatable } from './i-user-datable'; import type { Ishapable } from './i-shapable'; export interface IRectangleShape extends IRectBase, Ishapable, ILabelable, IStatusable, IUserDatable { }