UNPKG

446 BTypeScriptView Raw
1/// <reference types="jest" />
2export * from './utils';
3export * from './expectations';
4export * from './mocks';
5/**
6 * Augment jest expectations with our types.
7 */
8declare global {
9 namespace jest {
10 interface Matchers<R> {
11 toExist(): R;
12 toMatchFile(goldenFile: string): R;
13 toMatchDirectory(goldenDirectory: string, blacklist?: Set<string>): R;
14 }
15 }
16}
17//# sourceMappingURL=index.d.ts.map
\No newline at end of file