Files
hoppscotch/packages/hoppscotch-app/globals.d.ts
2022-01-06 22:47:25 +05:30

9 lines
221 B
TypeScript

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