(description?: string)
| 113 | } |
| 114 | |
| 115 | export function looseObjectSchema(description?: string): JsonSchema { |
| 116 | return { |
| 117 | type: 'object', |
| 118 | additionalProperties: true, |
| 119 | ...(description ? { description } : {}), |
| 120 | }; |
| 121 | } |
| 122 | |
| 123 | type FieldReader<T> = (record: Record<string, unknown>, key: string) => T | undefined; |
| 124 |
no outgoing calls
no test coverage detected
searching dependent graphs…