UNPKG
volva
Version:
latest (2.0.6)
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.2.3
1.2.2
1.2.1
1.1.0
1.0.4
1.0.3
1.0.2
0.9.1
0.9.0
Easier type checks for JS/TS variables.
stscoundrel/volva
volva
/
dist
/
types.d.ts
7 lines
(6 loc)
•
176 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * Provides exact type of variable. * 'typeof' doesnt tell apart type of number etc. */
export
declare
const
getType
:
(
input
:
unknown
) =>
string
;
export
default
getType;