1 | import { PlainObject } from './isPlainObject.js';
|
2 | /**
|
3 | * Returns whether the payload is an object like a type passed in < >
|
4 | *
|
5 | * Usage: isObjectLike<{id: any}>(payload) // will make sure it's an object and has an `id` prop.
|
6 | *
|
7 | * @template T This must be passed in < >
|
8 | */
|
9 | export declare function isObjectLike<T extends PlainObject>(payload: unknown): payload is T;
|