UNPKG

258 BTypeScriptView Raw
1import { PlainObject } from './isPlainObject.js';
2/**
3 * Returns whether the payload is a plain JavaScript object (excluding special classes or objects
4 * with other prototypes)
5 */
6export declare function isObject(payload: unknown): payload is PlainObject;