UNPKG
@typedly/digit
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
A TypeScript type definitions package for digit types.
github.com/typedly/digit
typedly/digit
@typedly/digit
/
lib
/
digit-string.type.d.ts
6 lines
(5 loc)
•
180 B
TypeScript
View Raw
1
2
3
4
5
6
/** * @description
Type
for
numeric digits
as
string literals
from
'0'
to
'9'
. * @export */ export
type
DigitString =
'0'
|
'1'
|
'2'
|
'3'
|
'4'
|
'5'
|
'6'
|
'7'
|
'8'
|
'9'
;