Type Alias _DucElementBase

_DucElementBase: Readonly<
    _DucElementStylesBase & {
        angle: Radian;
        blockIds: readonly BlockId[];
        boundElements: readonly Readonly<BoundElement>[]
        | null;
        customData?: Record<string, any>;
        description: string | null;
        frameId: string | null;
        groupIds: readonly GroupId[];
        height: PrecisionValue;
        id: string;
        index: FractionalIndex | null;
        instanceId: InstanceId | null;
        isDeleted: boolean;
        isPlot: boolean;
        isVisible: boolean;
        label: string;
        layerId: string | null;
        link: string | null;
        locked: boolean;
        regionIds: readonly RegionId[];
        scope: Scope;
        seed: number;
        updated: number;
        version: number;
        versionNonce: number;
        width: PrecisionValue;
        x: PrecisionValue;
        y: PrecisionValue;
        zIndex: number;
    },
>

Base element properties that all elements share