template literals kinda?

is there any way i can achieve this in arktype?

interface t {
    Color: "red" | "blue";
    DarkColor: `${t["Color"]}Dark`;
}
Was this page helpful?