(description?: string)
| 105 | } |
| 106 | |
| 107 | function stringArraySchema(description?: string): JsonSchema { |
| 108 | return { |
| 109 | type: 'array', |
| 110 | items: { type: 'string' }, |
| 111 | ...(description ? { description } : {}), |
| 112 | }; |
| 113 | } |
| 114 | |
| 115 | export function looseObjectSchema(description?: string): JsonSchema { |
| 116 | return { |
no outgoing calls
no test coverage detected
searching dependent graphs…