isObjectLike.d.ts 372 B

123456789
  1. import type { 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;