/** * Defines configurable options for setting up Swagger API documentation. * This includes optional authentication mechanisms like JWT or Kubernetes API keys. */ export type SwaggerOptions = { /** * Title of the API documentation displayed in Swagger UI */ title: string; /** * Short description of the API's purpose or scope */ description: string; };