@@ -71,13 +71,11 @@ import { ACCEPT_HEADER_VALUE, copyForwardUrlOptions, extractCacheOptions } from
71
71
*/
72
72
export function query < T extends TypedRecordInstance > (
73
73
type : TypeFromInstance < T > ,
74
- // eslint-disable-next-line @typescript-eslint/no-shadow
75
74
query ?: QueryParamsSource < T > ,
76
75
options ?: ConstrainedRequestOptions
77
76
) : QueryRequestOptions < T , CollectionResourceDataDocument < T > > ;
78
77
export function query (
79
78
type : string ,
80
- // eslint-disable-next-line @typescript-eslint/no-shadow
81
79
query ?: QueryParamsSource ,
82
80
options ?: ConstrainedRequestOptions
83
81
) : QueryRequestOptions ;
@@ -159,13 +157,11 @@ export function query(
159
157
*/
160
158
export function postQuery < T > (
161
159
type : TypeFromInstance < T > ,
162
- // eslint-disable-next-line @typescript-eslint/no-shadow
163
160
query ?: QueryParamsSource ,
164
161
options ?: ConstrainedRequestOptions
165
162
) : PostQueryRequestOptions < T , CollectionResourceDataDocument < T > > ;
166
163
export function postQuery (
167
164
type : string ,
168
- // eslint-disable-next-line @typescript-eslint/no-shadow
169
165
query ?: QueryParamsSource ,
170
166
options ?: ConstrainedRequestOptions
171
167
) : PostQueryRequestOptions ;
0 commit comments