sej
    Preparing search index...

    Variable TestSchemaConst

    TestSchema: ZodObject<
        {
            test: ZodType<
                (...args: any[]) => boolean,
                ZodTypeDef,
                (...args: any[]) => boolean,
            >;
        },
        "strip",
        ZodTypeAny,
        { test: (...args: any[]) => boolean },
        { test: (...args: any[]) => boolean },
    > = ...

    Schema for validating test methods.

    const isValid = TestSchema.parse({
    test: () => true
    });

    If the provided test method is not a function or does not return a boolean.