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

Properties

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