Numerical formatting from 0 to 99 with autocomplete sorted correctly. TypeScript series: Template literal types
Guilherme Siquinelli

Guilherme Siquinelli @guiseek

About: Arquiteto Web, apaixonado por código, eterno aprendiz, autodidata, curioso pelo universo e co-fundador da comunidade Dev Paraná

Location:
Maringá, BR
Joined:
Dec 4, 2020

Numerical formatting from 0 to 99 with autocomplete sorted correctly. TypeScript series: Template literal types

Publish Date: Aug 27 '23
1 0
type N = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9

type Note = `0${N}` | `${N}0` | `${N}${N}`
Enter fullscreen mode Exit fullscreen mode

Comments 0 total

    Add comment