UNPKG

mic-inspector

Version:

A react inspector which a most similar of Chorme DevTools inspector

9 lines (8 loc) 438 B
import { PropertyValueType } from './types'; import { NamedDescriptor } from '../named-descriptor'; /** * Return a boolean represents whether the property value is an object or a function * @param propertyValue Property value * @param descriptor Property decsriptor */ export declare const isObjectOrFunction: (propertyValue: PropertyValueType, descriptor?: NamedDescriptor<import("mic-global").PrimaryTypes> | undefined) => boolean;