| 17 | import { CheckCircleIcon } from "@heroicons/react/24/outline"; |
| 18 | |
| 19 | interface SwaggerParserErrorType { |
| 20 | instancePath: string; |
| 21 | keyword: string; |
| 22 | message: string; |
| 23 | params: Record<string, any>; |
| 24 | schemaPath: string; |
| 25 | } |
| 26 | |
| 27 | export default function UploadSpec(props: { |
| 28 | nextStep: () => void; |
nothing calls this directly
no outgoing calls
no test coverage detected