()
| 3 | import { SettingsSchema } from './types.js' |
| 4 | |
| 5 | export function generateSettingsJSONSchema(): string { |
| 6 | const jsonSchema = toJSONSchema(SettingsSchema(), { unrepresentable: 'any' }) |
| 7 | return jsonStringify(jsonSchema, null, 2) |
| 8 | } |
| 9 |
no test coverage detected