(description?: string)
| 97 | } |
| 98 | |
| 99 | export function integerSchema(description?: string): JsonSchema { |
| 100 | return { type: 'integer', ...(description ? { description } : {}) }; |
| 101 | } |
| 102 | |
| 103 | export function booleanSchema(description?: string): JsonSchema { |
| 104 | return { type: 'boolean', ...(description ? { description } : {}) }; |
no outgoing calls
no test coverage detected
searching dependent graphs…