BUPKIS
    Preparing search index...

    Variable emptyArrayAssertionConst

    emptyArrayAssertion: AssertionFunctionSync<
        readonly [
            ZodCustom<ArrayLike<unknown>, ArrayLike<unknown>>,
            "to be empty",
        ],
        (
            subject: ArrayLike<unknown>,
        ) => { actual: number; expected: number; message: string } | undefined,
        readonly [
            ZodCustom<ArrayLike<unknown>, ArrayLike<unknown>>,
            PhraseLiteralSlot<"to be empty">,
        ],
    > = ...

    Asserts that an array is empty.

    expect([], 'to be empty'); // passes
    expect([1, 2], 'to be empty'); // fails