BUPKIS
    Preparing search index...

    Variable oneOfAssertionConst

    oneOfAssertion: AssertionFunctionSync<
        readonly ["to be one of", ZodArray<ZodUnknown>],
        (
            subject: unknown,
            values: unknown[],
        ) => { actual: unknown; expected: unknown[]; message: string } | undefined,
        readonly [
            ZodUnknown,
            PhraseLiteralSlot<"to be one of">,
            ZodArray<ZodUnknown>,
        ],
    > = ...

    Assertion for testing if a value is one of a specific set of values.

    expect('red', 'to be one of', ['red', 'green', 'blue']); // passes
    expect('yellow', 'to be one of', ['red', 'green', 'blue']); // fails