File tree Expand file tree Collapse file tree 1 file changed +15
-13
lines changed Expand file tree Collapse file tree 1 file changed +15
-13
lines changed Original file line number Diff line number Diff line change 1
1
import { Plugin , NewPlugin } from 'pretty-format'
2
2
3
- declare namespace jest {
4
- interface AsymmetricMatcher {
5
- $$typeof : Symbol ;
6
- sample ?: string | RegExp | object | Array < any > | Function ;
7
- }
3
+ declare global {
4
+ namespace jest {
5
+ interface AsymmetricMatcher {
6
+ $$typeof : Symbol ;
7
+ sample ?: string | RegExp | object | Array < any > | Function ;
8
+ }
8
9
9
- type Value = string | number | RegExp | AsymmetricMatcher | undefined ;
10
+ type Value = string | number | RegExp | AsymmetricMatcher | undefined ;
10
11
11
- interface Options {
12
- media ?: string ;
13
- modifier ?: string ;
14
- supports ?: string ;
15
- }
12
+ interface Options {
13
+ media ?: string ;
14
+ modifier ?: string ;
15
+ supports ?: string ;
16
+ }
16
17
17
- interface Matchers < R , T > {
18
- toHaveStyleRule ( property : string , value ?: Value , options ?: Options ) : R ;
18
+ interface Matchers < R , T > {
19
+ toHaveStyleRule ( property : string , value ?: Value , options ?: Options ) : R ;
20
+ }
19
21
}
20
22
}
21
23
You can’t perform that action at this time.
0 commit comments