UNPKG
@wezom/type-guards
Version:
latest (0.1.0)
0.1.0
0.0.3
0.0.2
Simple TypeScript type guards
@wezom/type-guards
/
dist
/
@types
/
isNotEmptyString.d.ts
2 lines
(1 loc)
•
78 B
TypeScript
View Raw
1
2
export
declare
const
isNotEmptyString
:
(
sample
:
unknown
) =>
sample is
string
;