type-utils.d.ts 98 B

123
  1. interface Object {
  2. hasOwnProperty<K extends PropertyKey>(key: K): this is Record<K, unknown>;
  3. }