| 2 | import type React from "react"; |
| 3 | |
| 4 | interface ZodResource { |
| 5 | name: string; |
| 6 | url: string; |
| 7 | description: React.ReactNode; |
| 8 | slug: string; |
| 9 | stars?: number; |
| 10 | } |
| 11 | |
| 12 | const apiLibraries: ZodResource[] = [ |
| 13 | { |
nothing calls this directly
no outgoing calls
no test coverage detected