Hyperlinkv0.8.0-beta.28

Schema

Source effect/Schema.ts:846412 lines
export interface NonEmptyString extends String {
  readonly "Rebuild": NonEmptyString
}

/**
 * Schema for non-empty strings. Validates that a string has at least one
 * character.
 *
 * @category string
 * @since 3.10.0
 */
export const NonEmptyString: NonEmptyString = String.check(isNonEmpty())
Referenced by 1 symbols