BUPKIS
    Preparing search index...

    Variable collectionSizeGreaterThanAssertionConst

    collectionSizeGreaterThanAssertion: AssertionFunctionSync<
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Map<unknown, unknown>, Map<unknown, unknown>>,
                    ZodCustom<Set<unknown>, Set<unknown>>,
                ],
            >,
            "to have size greater than",
            ZodInt,
        ],
        (
            collection: Map<unknown, unknown> | Set<unknown>,
            minSize: number,
        ) => { actual: number; expected: number; message: string } | undefined,
        readonly [
            ZodUnion<
                readonly [
                    ZodCustom<Map<unknown, unknown>, Map<unknown, unknown>>,
                    ZodCustom<Set<unknown>, Set<unknown>>,
                ],
            >,
            PhraseLiteralSlot<"to have size greater than">,
            ZodInt,
        ],
    > = ...

    Asserts that a collection (Map or Set) has a size greater than a threshold.

    expect(new Set([1, 2, 3]), 'to have size greater than', 2); // passes
    expect(new Set([1]), 'to have size greater than', 2); // fails

    collection-to-have-size-greater-than-nonnegative-integer

    collections