feat: initial new openapi importer implementation

This commit is contained in:
Andrew Bastin
2022-01-06 22:47:25 +05:30
parent e9e791ce90
commit 4cec5a7bb4
5 changed files with 581 additions and 9 deletions

8
packages/hoppscotch-app/globals.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
/*
* 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>
}