( input: any, types: ReadonlyArray<AST>, isConstructor = false )
| 2794 | * @internal |
| 2795 | */ |
| 2796 | export function getCandidates( |
| 2797 | input: any, |
| 2798 | types: ReadonlyArray<AST>, |
| 2799 | isConstructor = false |
| 2800 | ): ReadonlyArray<AST> { |
| 2801 | return getIndex(types)(input, isConstructor) |
| 2802 | } |
| 2803 | |
| 2804 | /** |
| 2805 | * AST node representing a union of schemas. |