UNPKG

typeguru

Version:

TypeGuru is a lightweight TypeScript utility library for type checking. It includes utility functions for checking object literals, plain objects, specific types, and more.

3 lines 168 B
export type IsObjectLiteral = (value: unknown) => boolean; export type IsPlainObject = (value: unknown) => boolean; export type IsArray = (value: unknown) => boolean;