BUPKIS
    Preparing search index...

    Type Alias ExpectFunction<SyncAssertions>

    ExpectFunction: UnionToIntersection<
        TupleToUnion<
            {
                [K in keyof SyncAssertions]: (
                    ...args: MutableOrReadonly<
                        SlotsFromParts<SyncAssertions[K]["parts"]>,
                    >,
                ) => void
            },
        >,
    >

    The function part of Expect.

    This is an intersection of all function signatures derived from the available synchronous assertions.

    Type Parameters