UNPKG

@fancyapps/ui

Version:

Robust JavaScript UI Component Library

8 lines (7 loc) 185 B
export type PlainObject = { [name: string]: any; }; export type PlainObjectOf<T> = { [name: string]: T; }; export declare const isPlainObject: (obj: any) => obj is PlainObject;