UNPKG

volva

Version:

Easier type checks for JS/TS variables.

7 lines (6 loc) 176 B
/** * Provides exact type of variable. * 'typeof' doesnt tell apart type of number etc. */ export declare const getType: (input: unknown) => string; export default getType;