| 1 | import type { ValidatorAdapter } from '@tanstack/react-router' |
| 2 | |
| 3 | export interface ArkTypeLike { |
| 4 | infer: any |
| 5 | inferIn: any |
| 6 | assert: (input: any) => any |
| 7 | } |
| 8 | |
| 9 | export type ArkTypeValidatorAdapter<TOptions extends ArkTypeLike> = |
| 10 | ValidatorAdapter<TOptions['inferIn'], TOptions['infer']> |
nothing calls this directly
no outgoing calls
no test coverage detected