()
| 273 | } |
| 274 | |
| 275 | function headerInteger(): Record<string, unknown> { |
| 276 | return { |
| 277 | schema: { |
| 278 | type: 'integer', |
| 279 | }, |
| 280 | }; |
| 281 | } |
| 282 | |
| 283 | function appendDescription(existing: unknown, extra: string): string { |
| 284 | if (typeof existing !== 'string' || existing.length === 0) return extra; |
no outgoing calls
no test coverage detected