Skip to content

Commit

Permalink
Change type to allow docs_url, redoc_url and openapi_url to be null (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
marceloverdijk authored Aug 23, 2024
1 parent a357e1a commit ec3f4c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ export type RouteParameter =
export interface RouterOptions {
base?: string
schema?: Partial<OpenAPIObjectConfigV31 | OpenAPIObjectConfig>
docs_url?: string
redoc_url?: string
openapi_url?: string
docs_url?: string | null
redoc_url?: string | null
openapi_url?: string | null
raiseUnknownParameters?: boolean
generateOperationIds?: boolean
openapiVersion?: '3' | '3.1'
Expand Down

0 comments on commit ec3f4c6

Please sign in to comment.