I would like to make sure, that string contains other string, at transpile time:
type OneOrTwo = "one" | "two"
type StringContainingOneOrTwo = string
let str: StringContainingOneOrTwo = "123" + "one" // ok, contains OneOrTwo
let str2: StringContainingOneOrTwo = "123" + "onesss" // should fail, does not contain OneOrTwo
"123"+"one"
has the type"123one"