(description?: string)
| 93 | } |
| 94 | |
| 95 | function numberSchema(description?: string): JsonSchema { |
| 96 | return { type: 'number', ...(description ? { description } : {}) }; |
| 97 | } |
| 98 | |
| 99 | export function integerSchema(description?: string): JsonSchema { |
| 100 | return { type: 'integer', ...(description ? { description } : {}) }; |
no outgoing calls
no test coverage detected
searching dependent graphs…