From T, pick a set of properties whose keys are in the union K

interface PieDataTitle {
    font: Partial<PieFont>;
    position:
        | "top left"
        | "top center"
        | "top right"
        | "middle center"
        | "bottom left"
        | "bottom center"
        | "bottom right";
    text: string;
}

Hierarchy (view full)

Properties

Properties

position:
    | "top left"
    | "top center"
    | "top right"
    | "middle center"
    | "bottom left"
    | "bottom center"
    | "bottom right"
text: string