globals.d.ts 221 B

12345678
  1. /*
  2. * Some helpful type definitions to help with type checking
  3. */
  4. interface Object {
  5. // Allows for TypeScript to know this field now exist
  6. hasOwnProperty<K extends PropertyKey>(key: K): this is Record<K, unknown>
  7. }