( values: unknown )
| 42 | * Convenience helper for contexts that expect the narrower ToolParams typing. |
| 43 | */ |
| 44 | export function normalizeExcelValuesForToolParams( |
| 45 | values: unknown |
| 46 | ): OneDriveToolParams['values'] | undefined { |
| 47 | const normalized = normalizeExcelValues(values) |
| 48 | return normalized as OneDriveToolParams['values'] | undefined |
| 49 | } |
no test coverage detected