(description?: string)
| 89 | } |
| 90 | |
| 91 | export function stringSchema(description?: string): JsonSchema { |
| 92 | return { type: 'string', ...(description ? { description } : {}) }; |
| 93 | } |
| 94 | |
| 95 | function numberSchema(description?: string): JsonSchema { |
| 96 | return { type: 'number', ...(description ? { description } : {}) }; |
no outgoing calls
no test coverage detected