© 2026 Hedgehog Software, LLC
ts enum Env { "PRODUCTION", "DEVELOPMENT" } const EnvSchema = S.Enums(Env) type TEnv = typeof EnvSchema.Type const a: TEnv = 'PRODUCTION' // This doesn't work