UNPKG

@fancyapps/ui

Version:

Robust JavaScript UI Component Library

11 lines (10 loc) 244 B
export type PlainObject = { [name: string]: any; }; export type PlainObjectOf<T> = { [name: string]: T; }; /** * Check if the given object is a plain object */ export declare const isPlainObject: (obj: unknown) => obj is PlainObject;