UNPKG
@instawork/design-system
Version:
dev (4.10.0)
latest (4.10.1)
4.10.1
4.10.0
4.9.0
4.8.0
4.7.0
4.6.1
4.6.0
4.5.1
4.4.2
4.4.0
4.3.3
4.3.2
4.3.1
4.3.0
4.2.1
4.2.0
4.1.1
4.1.0
4.0.0
4.0.0-alpha.1
3.21.0
3.20.0
3.19.0
3.18.0
3.17.0
3.16.0
3.15.0
3.14.0
3.9.0
3.7.0
3.6.0
3.5.0
3.4.0
3.4.0-pre.0
3.3.0
3.2.0-pre.1
3.1.0
3.1.0-pre.2
3.1.0-pre.1
3.0.0
3.0.0-pre.4
3.0.0-pre.2
3.0.0-pre.1
The design system for Instawork's web apps
Instawork/design-system
@instawork/design-system
/
lib
/
common
/
no-value-string.d.ts
5 lines
(4 loc)
•
256 B
TypeScript
View Raw
1
2
3
4
5
export
declare
type
EmptyString
=
''
;
export
declare
type
NoValueString
=
null
|
undefined
|
EmptyString
;
export
declare
function
isNoValueString
(
obj
:
unknown
): obj is
NoValueString
;
export
declare
function
isEmptyString
(
obj
:
unknown
): obj is
EmptyString
;