UNPKG

@cookbook/dot-notation

Version:

Object readings and complex transformations using dot notation syntax.

9 lines (8 loc) 265 B
declare const is: { nullish<T>(value: T): value is null; string<T_1>(value: T_1): value is string; number<T_2>(value: T_2): value is number; object<T_3>(value: T_3): value is object; array<T_4>(value: T_4): value is any[]; }; export default is;