(description?: string)
| 101 | } |
| 102 | |
| 103 | export function booleanSchema(description?: string): JsonSchema { |
| 104 | return { type: 'boolean', ...(description ? { description } : {}) }; |
| 105 | } |
| 106 | |
| 107 | function stringArraySchema(description?: string): JsonSchema { |
| 108 | return { |
no outgoing calls
no test coverage detected