From 8b1e62a4d4235e89cdb7aeea10f330a8f673cbba Mon Sep 17 00:00:00 2001 From: Aramis Sennyey Date: Mon, 3 Apr 2023 14:11:04 -0400 Subject: [PATCH] Fix import. Signed-off-by: Aramis Sennyey --- packages/backend-openapi-utils/src/types/express.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend-openapi-utils/src/types/express.ts b/packages/backend-openapi-utils/src/types/express.ts index 7f553f8217..b0020dab37 100644 --- a/packages/backend-openapi-utils/src/types/express.ts +++ b/packages/backend-openapi-utils/src/types/express.ts @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -import core from 'express-serve-static-core'; +import type core from 'express-serve-static-core'; import { DocPathTemplate, MethodAwareDocPath, RequiredDoc } from './common'; import { PathSchema, QuerySchema } from './params'; import { RequestBodyToJsonSchema } from './requests';