We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be1f42b commit a77970cCopy full SHA for a77970c
packages/rest/package.json
@@ -42,6 +42,7 @@
42
"js-yaml": "^3.11.0",
43
"lodash": "^4.17.5",
44
"openapi-schema-to-json-schema": "^2.1.0",
45
+ "openapi3-ts": "^1.0.0",
46
"parseurl": "^1.3.2",
47
"path-to-regexp": "^2.2.0",
48
"qs": "^6.5.2",
packages/rest/src/keys.ts
@@ -5,7 +5,12 @@
5
6
import {CoreBindings} from '@loopback/core';
7
import {BindingKey, Context} from '@loopback/context';
8
-import {OpenApiSpec} from '@loopback/openapi-v3-types';
+
9
+/**
10
+ * See https://github.com/Microsoft/TypeScript/issues/26985
11
+ */
12
+// import {OpenApiSpec} from '@loopback/openapi-v3-types';
13
+import {OpenAPIObject as OpenApiSpec} from 'openapi3-ts';
14
15
import {HttpHandler} from './http-handler';
16
import {SequenceHandler} from './sequence';
0 commit comments