BUPKIS
    Preparing search index...

    Variable objectSizeAssertionConst

    objectSizeAssertion: AssertionFunctionSync<
        readonly [
            ZodRecord<
                ZodUnion<readonly [ZodString, ZodNumber, ZodSymbol]>,
                ZodUnknown,
            >,
            "to have size",
            ZodInt,
        ],
        (
            subject: Record<string | number | symbol, unknown>,
            expectedSize: number,
        ) => { actual: number; expected: number; message: string } | undefined,
        readonly [
            ZodRecord<
                ZodUnion<readonly [ZodString, ZodNumber, ZodSymbol]>,
                ZodUnknown,
            >,
            PhraseLiteralSlot<"to have size">,
            ZodInt,
        ],
    > = ...

    Asserts that an object has a specific number of keys.

    expect({ a: 1, b: 2 }, 'to have size', 2); // passes
    expect({ a: 1 }, 'to have size', 2); // fails

    unknown-to-be-an-object

    object