UNPKG

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