Package: effect
Module: Config
Creates a config for a non-empty string value. Fails if the value is an empty string.
When to use
Use to read a string config value that must contain at least one character.
Details
Shortcut for Config.schema(Schema.NonEmptyString, name).
See
string for allowing empty stringsSignature
declare const nonEmptyString: (name?: string) => Config<string>
Since v3.7.0