types-kit.othertostring.md

September 4, 2023 ยท View on GitHub

Home > types-kit > OtherToString

OtherToString type

Stringify other types

Signature:

export type OtherToString<T> = T extends
  | string
  | number
  | bigint
  | boolean
  | null
  | undefined
  ? `${T}`
  : never

Example

// Expect: '1'
type Foo = OtherToString<1>

Contents

  1. 1OtherToString type
  2. 2Example