import type { IThingOption } from '../option'; import type { IRectangleShape } from './i-rectangle-shape'; export interface IThing extends IRectangleShape { new (option: IThingOption, hoverOption: IThingOption, errorOption: IThingOption, id?: string): IThing; getThing(): string; setThing(title: string): void; }