From 4386e3abe02b84000630ffacf53ab18936cf5d3d Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Wed, 16 Apr 2025 07:09:21 -0600 Subject: [PATCH] feat(exports): Expose more of the OpenAPI types I found myself having to make changes to the doc built by the module. It would have been helpful to have these types available. --- lib/interfaces/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/interfaces/index.ts b/lib/interfaces/index.ts index 068c50a86..eeabd11cd 100644 --- a/lib/interfaces/index.ts +++ b/lib/interfaces/index.ts @@ -1,3 +1,3 @@ -export { OpenAPIObject } from './open-api-spec.interface'; +export * from './open-api-spec.interface'; export * from './swagger-custom-options.interface'; export * from './swagger-document-options.interface';