BUPKIS
    Preparing search index...

    Variable classAssertionConst

    classAssertion: AssertionStandardSchemaSync<
        readonly [
            readonly [
                "to be a class",
                "to be a constructor",
                "to be constructible",
            ],
        ],
        ZodCustom<Constructor, Constructor>,
        never,
    > = ...

    Asserts that the subject is a class constructor (constructible function).

    expect(Date, 'to be a class'); // passes
    expect(() => {}, 'to be a class'); // fails