@@ -31,84 +31,84 @@ export type BoundSyncFunctions<Q> = Q extends typeof syncQueries
31
31
getAllByLabelText < T extends HTMLElement = HTMLElement > (
32
32
...args : Parameters < BoundFunction < queries . AllByText < T > > >
33
33
) : ReturnType < queries . AllByText < T > >
34
- findByLabelText < T extends HTMLElement = HTMLElement > (
35
- ...args : Parameters < BoundFunction < queries . FindByText < T > > >
36
- ) : ReturnType < queries . FindByText < T > >
37
- findAllByLabelText < T extends HTMLElement = HTMLElement > (
38
- ...args : Parameters < BoundFunction < queries . FindAllByText < T > > >
39
- ) : ReturnType < queries . FindAllByText < T > >
34
+ queryByLabelText < T extends HTMLElement = HTMLElement > (
35
+ ...args : Parameters < BoundFunction < queries . QueryByText < T > > >
36
+ ) : ReturnType < queries . QueryByText < T > >
37
+ queryAllByLabelText < T extends HTMLElement = HTMLElement > (
38
+ ...args : Parameters < BoundFunction < queries . AllByText < T > > >
39
+ ) : ReturnType < queries . AllByText < T > >
40
40
getByPlaceholderText < T extends HTMLElement = HTMLElement > (
41
41
...args : Parameters < BoundFunction < queries . GetByBoundAttribute < T > > >
42
42
) : ReturnType < queries . GetByBoundAttribute < T > >
43
43
getAllByPlaceholderText < T extends HTMLElement = HTMLElement > (
44
44
...args : Parameters < BoundFunction < queries . AllByBoundAttribute < T > > >
45
45
) : ReturnType < queries . AllByBoundAttribute < T > >
46
- findByPlaceholderText < T extends HTMLElement = HTMLElement > (
47
- ...args : Parameters < BoundFunction < queries . FindByBoundAttribute < T > > >
48
- ) : ReturnType < queries . FindByBoundAttribute < T > >
49
- findAllByPlaceholderText < T extends HTMLElement = HTMLElement > (
50
- ...args : Parameters < BoundFunction < queries . FindAllByBoundAttribute < T > > >
51
- ) : ReturnType < queries . FindAllByBoundAttribute < T > >
46
+ queryByPlaceholderText < T extends HTMLElement = HTMLElement > (
47
+ ...args : Parameters < BoundFunction < queries . QueryByBoundAttribute < T > > >
48
+ ) : ReturnType < queries . QueryByBoundAttribute < T > >
49
+ queryAllByPlaceholderText < T extends HTMLElement = HTMLElement > (
50
+ ...args : Parameters < BoundFunction < queries . AllByBoundAttribute < T > > >
51
+ ) : ReturnType < queries . AllByBoundAttribute < T > >
52
52
getByText < T extends HTMLElement = HTMLElement > (
53
53
...args : Parameters < BoundFunction < queries . GetByText < T > > >
54
54
) : ReturnType < queries . GetByText < T > >
55
55
getAllByText < T extends HTMLElement = HTMLElement > (
56
56
...args : Parameters < BoundFunction < queries . AllByText < T > > >
57
57
) : ReturnType < queries . AllByText < T > >
58
- findByText < T extends HTMLElement = HTMLElement > (
59
- ...args : Parameters < BoundFunction < queries . FindByText < T > > >
60
- ) : ReturnType < queries . FindByText < T > >
61
- findAllByText < T extends HTMLElement = HTMLElement > (
62
- ...args : Parameters < BoundFunction < queries . FindAllByText < T > > >
63
- ) : ReturnType < queries . FindAllByText < T > >
58
+ queryByText < T extends HTMLElement = HTMLElement > (
59
+ ...args : Parameters < BoundFunction < queries . QueryByText < T > > >
60
+ ) : ReturnType < queries . QueryByText < T > >
61
+ queryAllByText < T extends HTMLElement = HTMLElement > (
62
+ ...args : Parameters < BoundFunction < queries . AllByText < T > > >
63
+ ) : ReturnType < queries . AllByText < T > >
64
64
getByAltText < T extends HTMLElement = HTMLElement > (
65
65
...args : Parameters < BoundFunction < queries . GetByBoundAttribute < T > > >
66
66
) : ReturnType < queries . GetByBoundAttribute < T > >
67
67
getAllByAltText < T extends HTMLElement = HTMLElement > (
68
68
...args : Parameters < BoundFunction < queries . AllByBoundAttribute < T > > >
69
69
) : ReturnType < queries . AllByBoundAttribute < T > >
70
- findByAltText < T extends HTMLElement = HTMLElement > (
71
- ...args : Parameters < BoundFunction < queries . FindByBoundAttribute < T > > >
72
- ) : ReturnType < queries . FindByBoundAttribute < T > >
73
- findAllByAltText < T extends HTMLElement = HTMLElement > (
74
- ...args : Parameters < BoundFunction < queries . FindAllByBoundAttribute < T > > >
75
- ) : ReturnType < queries . FindAllByBoundAttribute < T > >
70
+ queryByAltText < T extends HTMLElement = HTMLElement > (
71
+ ...args : Parameters < BoundFunction < queries . QueryByBoundAttribute < T > > >
72
+ ) : ReturnType < queries . QueryByBoundAttribute < T > >
73
+ queryAllByAltText < T extends HTMLElement = HTMLElement > (
74
+ ...args : Parameters < BoundFunction < queries . AllByBoundAttribute < T > > >
75
+ ) : ReturnType < queries . AllByBoundAttribute < T > >
76
76
getByTitle < T extends HTMLElement = HTMLElement > (
77
77
...args : Parameters < BoundFunction < queries . GetByBoundAttribute < T > > >
78
78
) : ReturnType < queries . GetByBoundAttribute < T > >
79
79
getAllByTitle < T extends HTMLElement = HTMLElement > (
80
80
...args : Parameters < BoundFunction < queries . AllByBoundAttribute < T > > >
81
81
) : ReturnType < queries . AllByBoundAttribute < T > >
82
- findByTitle < T extends HTMLElement = HTMLElement > (
83
- ...args : Parameters < BoundFunction < queries . FindByBoundAttribute < T > > >
84
- ) : ReturnType < queries . FindByBoundAttribute < T > >
85
- findAllByTitle < T extends HTMLElement = HTMLElement > (
86
- ...args : Parameters < BoundFunction < queries . FindAllByBoundAttribute < T > > >
87
- ) : ReturnType < queries . FindAllByBoundAttribute < T > >
82
+ queryByTitle < T extends HTMLElement = HTMLElement > (
83
+ ...args : Parameters < BoundFunction < queries . QueryByBoundAttribute < T > > >
84
+ ) : ReturnType < queries . QueryByBoundAttribute < T > >
85
+ queryAllByTitle < T extends HTMLElement = HTMLElement > (
86
+ ...args : Parameters < BoundFunction < queries . AllByBoundAttribute < T > > >
87
+ ) : ReturnType < queries . AllByBoundAttribute < T > >
88
88
getByDisplayValue < T extends HTMLElement = HTMLElement > (
89
89
...args : Parameters < BoundFunction < queries . GetByBoundAttribute < T > > >
90
90
) : ReturnType < queries . GetByBoundAttribute < T > >
91
91
getAllByDisplayValue < T extends HTMLElement = HTMLElement > (
92
92
...args : Parameters < BoundFunction < queries . AllByBoundAttribute < T > > >
93
93
) : ReturnType < queries . AllByBoundAttribute < T > >
94
- findByDisplayValue < T extends HTMLElement = HTMLElement > (
95
- ...args : Parameters < BoundFunction < queries . FindByBoundAttribute < T > > >
96
- ) : ReturnType < queries . FindByBoundAttribute < T > >
97
- findAllByDisplayValue < T extends HTMLElement = HTMLElement > (
98
- ...args : Parameters < BoundFunction < queries . FindAllByBoundAttribute < T > > >
99
- ) : ReturnType < queries . FindAllByBoundAttribute < T > >
94
+ queryByDisplayValue < T extends HTMLElement = HTMLElement > (
95
+ ...args : Parameters < BoundFunction < queries . QueryByBoundAttribute < T > > >
96
+ ) : ReturnType < queries . QueryByBoundAttribute < T > >
97
+ queryAllByDisplayValue < T extends HTMLElement = HTMLElement > (
98
+ ...args : Parameters < BoundFunction < queries . AllByBoundAttribute < T > > >
99
+ ) : ReturnType < queries . AllByBoundAttribute < T > >
100
100
getByRole < T extends HTMLElement = HTMLElement > (
101
101
...args : Parameters < BoundFunction < queries . GetByRole < T > > >
102
102
) : ReturnType < queries . GetByRole < T > >
103
103
getAllByRole < T extends HTMLElement = HTMLElement > (
104
104
...args : Parameters < BoundFunction < queries . AllByRole < T > > >
105
105
) : ReturnType < queries . AllByRole < T > >
106
- findByRole < T extends HTMLElement = HTMLElement > (
107
- ...args : Parameters < BoundFunction < queries . FindByRole < T > > >
108
- ) : ReturnType < queries . FindByRole < T > >
109
- findAllByRole < T extends HTMLElement = HTMLElement > (
110
- ...args : Parameters < BoundFunction < queries . FindAllByRole < T > > >
111
- ) : ReturnType < queries . FindAllByRole < T > >
106
+ queryByRole < T extends HTMLElement = HTMLElement > (
107
+ ...args : Parameters < BoundFunction < queries . QueryByRole < T > > >
108
+ ) : ReturnType < queries . QueryByRole < T > >
109
+ queryAllByRole < T extends HTMLElement = HTMLElement > (
110
+ ...args : Parameters < BoundFunction < queries . AllByRole < T > > >
111
+ ) : ReturnType < queries . AllByRole < T > >
112
112
getByTestId < T extends HTMLElement = HTMLElement > (
113
113
...args : Parameters < BoundFunction < queries . GetByBoundAttribute < T > > >
114
114
) : ReturnType < queries . GetByBoundAttribute < T > >
@@ -121,12 +121,6 @@ export type BoundSyncFunctions<Q> = Q extends typeof syncQueries
121
121
queryAllByTestId < T extends HTMLElement = HTMLElement > (
122
122
...args : Parameters < BoundFunction < queries . AllByBoundAttribute < T > > >
123
123
) : ReturnType < queries . AllByBoundAttribute < T > >
124
- findByTestId < T extends HTMLElement = HTMLElement > (
125
- ...args : Parameters < BoundFunction < queries . FindByBoundAttribute < T > > >
126
- ) : ReturnType < queries . FindByBoundAttribute < T > >
127
- findAllByTestId < T extends HTMLElement = HTMLElement > (
128
- ...args : Parameters < BoundFunction < queries . FindAllByBoundAttribute < T > > >
129
- ) : ReturnType < queries . FindAllByBoundAttribute < T > >
130
124
} & {
131
125
[ P in keyof Q ] : BoundFunction < Q [ P ] >
132
126
}
0 commit comments