init project

This commit is contained in:
root
2026-04-23 00:21:02 -04:00
parent 23826c5528
commit 9191fd32f0
64 changed files with 10229 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
declare module 'swagger-ui-react' {
import type { ComponentType } from 'react'
type SwaggerRequest = {
headers: Record<string, string>
url?: string
method?: string
}
export interface SwaggerUIProps {
url?: string
docExpansion?: string
defaultModelsExpandDepth?: number
deepLinking?: boolean
tryItOutEnabled?: boolean
persistAuthorization?: boolean
requestInterceptor?: (req: SwaggerRequest) => SwaggerRequest
}
const SwaggerUI: ComponentType<SwaggerUIProps>
export default SwaggerUI
}