output
    Preparing search index...

    Type Alias EvaluatorFunctionWrapper<InputSchema, Result>

    EvaluatorFunctionWrapper: InputSchema extends AnyZodSchema
        ? (input: z.input<InputSchema>) => Promise<Result>
        : () => Promise<Result>

    A wrapper around the user defined fn handler function.

    Callers pass values accepted by inputSchema (z.input). The wrapper parses input and invokes fn.

    Type Parameters