BUPKIS
    Preparing search index...

    Variable emptyArrayAssertionConst

    emptyArrayAssertion: AssertionFunctionSync<
        readonly [
            ZodUnion<
                readonly [
                    ZodArray<ZodUnknown>,
                    ZodTuple<[ZodUnknown], ZodUnknown>,
                    ZodObject<{ length: ZodNumber }, $loose>,
                ],
            >,
            "to be empty",
        ],
        (
            subject:
                | unknown[]
                | [unknown, ...unknown[]]
                | { length: number; [key: string]: unknown },
        ) => { actual: number; expected: number; message: string } | undefined,
        readonly [
            ZodUnion<
                readonly [
                    ZodArray<ZodUnknown>,
                    ZodTuple<[ZodUnknown], ZodUnknown>,
                    ZodObject<{ length: ZodNumber }, $loose>,
                ],
            >,
            PhraseLiteralSlot<"to be empty">,
        ],
    > = ...

    Asserts that an array is empty.

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