From f810d2e0dd9f0ab4003ecc8ea07e0990555f161b Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Fri, 10 Jan 2025 14:35:43 +0000 Subject: [PATCH] ci: Format code --- src/lib/openapi/types.ts | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/lib/openapi/types.ts b/src/lib/openapi/types.ts index 245d36e..30624bc 100644 --- a/src/lib/openapi/types.ts +++ b/src/lib/openapi/types.ts @@ -79,13 +79,16 @@ export interface OpenapiSchema { 'x-draft'?: string 'x-undocumented'?: string 'x-route-path'?: string - 'x-enums'?: Record + 'x-enums'?: Record< + string, + { + title?: string + description?: string + undocumented?: string + deprecated?: string + draft?: string + } + > } export interface OpenapiComponents {