Returns a function that brands a string with the specified brand. For
example:
typeApple = BrandedString<"apple">; // `makeApple` will be of type `(s: string) => Apple` constmakeApple = makeBrandString<Apple>(); // `apple` will be of type `Apple` constapple = makeApple("Pink Lady");
Returns a function that brands a string with the specified brand. For example: