mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* corrected Matchers, added ExtendedExpect * Matchers<R,T> * updating dependent packages * refactor and additional getState/setState/matcher context * MatcherContext * Matchers<R, T> for jest-axe
14 lines
433 B
TypeScript
14 lines
433 B
TypeScript
// Type definitions for jest-expect-message 1.0
|
|
// Project: https://github.com/mattphillips/jest-expect-message#readme
|
|
// Definitions by: Mike Davydov <https://github.com/mike-d-davydov>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.4
|
|
|
|
/// <reference types="jest"/>
|
|
|
|
declare namespace jest {
|
|
interface Expect {
|
|
<T = any>(actual: T, message: string): JestMatchers<T>;
|
|
}
|
|
}
|