interface ShapeProperties {
    cornerFamily?: CornerFamily;
    cornerFamilyBottomLeft?: CornerFamily;
    cornerFamilyBottomRight?: CornerFamily;
    cornerFamilyTopLeft?: CornerFamily;
    cornerFamilyTopRight?: CornerFamily;
    cornerSize?: number | LengthPercentUnit | LengthDipUnit | LengthPxUnit;
    cornerSizeBottomLeft?:
        | number
        | LengthPercentUnit
        | LengthDipUnit
        | LengthPxUnit;
    cornerSizeBottomRight?: | number
    | LengthPercentUnit
    | LengthDipUnit
    | LengthPxUnit;
    cornerSizeTopLeft?: | number
    | LengthPercentUnit
    | LengthDipUnit
    | LengthPxUnit;
    cornerSizeTopRight?: | number
    | LengthPercentUnit
    | LengthDipUnit
    | LengthPxUnit;
}

Properties

cornerFamily?: CornerFamily
cornerFamilyBottomLeft?: CornerFamily
cornerFamilyBottomRight?: CornerFamily
cornerFamilyTopLeft?: CornerFamily
cornerFamilyTopRight?: CornerFamily
cornerSize?: number | LengthPercentUnit | LengthDipUnit | LengthPxUnit
cornerSizeBottomLeft?: number | LengthPercentUnit | LengthDipUnit | LengthPxUnit
cornerSizeBottomRight?:
    | number
    | LengthPercentUnit
    | LengthDipUnit
    | LengthPxUnit
cornerSizeTopLeft?: number | LengthPercentUnit | LengthDipUnit | LengthPxUnit
cornerSizeTopRight?: number | LengthPercentUnit | LengthDipUnit | LengthPxUnit