Narrow a type to a specific subtype (useful for literal narrowing)
type A = Narrow<"hello">; // "hello"type B = Narrow<string>; // string Copy
type A = Narrow<"hello">; // "hello"type B = Narrow<string>; // string
Narrow a type to a specific subtype (useful for literal narrowing)