UNPKG

@ekb1zh/type

Version:

Simple tool for getting data type

3 lines (2 loc) 196 B
export declare type Kind = 'null' | 'undefined' | 'boolean' | 'number' | 'string' | 'symbol' | 'bigint' | 'function' | 'array' | 'object'; export declare const typeOf: (value: unknown) => Kind;