String Literal Type
↔ fixed set of specific values for string
as types
let direction: "left" | "right";
type Owner_ID = `local-${string}`;
String Literal Type
↔ fixed set of specific values for string
as typeslet direction: "left" | "right";
type Owner_ID = `local-${string}`;