(context: CompileContext)
| 5 | import type { CompileContext } from "./context/compile.js"; |
| 6 | |
| 7 | export const compile = async (context: CompileContext): Promise<void> => { |
| 8 | await compileSchemasToTypescript(context); |
| 9 | removePlaceholderTypes(context); |
| 10 | replaceInterfaceWithType(context); |
| 11 | }; |
no test coverage detected