import type { IRectangleOption } from '../base'; import type { ILabelOption } from './i-label-option'; export interface IObjectOption extends IRectangleOption { showObject?: boolean; object?: ILabelOption; showAttribute?: boolean; attribute?: ILabelOption; userData?: any; }