bupkis
    Preparing search index...

    Type Alias ExpectFunction<SyncAssertions>

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

    Type Parameters