© 2026 Hedgehog Software, LLC
export interface Primitive<out A> extends Config<A> { readonly description: string parse(text: string): Either.Either<ConfigError.ConfigError, A> }
in
out