Type alias TStringNotOfLength<S, Length>

TStringNotOfLength<S, Length>: TLengthOfString<S> extends Length
    ? never
    : S

A type representing a string not of a specific length.

Type Parameters

  • S extends string

  • Length extends number

Generated using TypeDoc