提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
372 B

  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;