isObject.d.ts 104 B

123
  1. declare function isObject<T>(x: T): x is T & object & Record<PropertyKey, unknown>;
  2. export = isObject;