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