Type Alias NonAsyncMatchers<TMatchers>

NonAsyncMatchers: {
    [K in keyof TMatchers]: ReturnType<TMatchers[K]> extends Promise<
        CustomMatcherResult,
    >
        ? never
        : K
}[keyof TMatchers]

Type Parameters