File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,23 +26,23 @@ interface GetAuthRequestOptions extends BaseRequestOptions {
26
26
queryParams ?: { [ key : string ] : string } ;
27
27
version ?: string ;
28
28
}
29
- interface PostAuthRequestOptions < T > extends BaseRequestOptions {
29
+ interface PostAuthRequestOptions extends BaseRequestOptions {
30
30
token : string | null ;
31
- data : T ;
31
+ data : any ;
32
32
logoutUser : ( value ?: string | undefined ) => void ;
33
33
headers ?: Record < string , string > ;
34
34
}
35
35
interface DeleteAuthRequestOptions extends BaseRequestOptions {
36
36
token : string | null ;
37
37
logoutUser : ( value ?: string | undefined ) => void ;
38
38
}
39
- interface PutAuthRequestOptions < T > extends BaseRequestOptions {
39
+ interface PutAuthRequestOptions extends BaseRequestOptions {
40
40
token : string | null ;
41
- data ?: T ;
41
+ data ?: any ;
42
42
logoutUser : ( value ?: string | undefined ) => void ;
43
43
}
44
- interface PostRequestOptions < T > extends BaseRequestOptions {
45
- data : T ;
44
+ interface PostRequestOptions extends BaseRequestOptions {
45
+ data : any ;
46
46
}
47
47
interface GetRequestOptions extends BaseRequestOptions {
48
48
queryParams ?: { [ key : string ] : string } ;
You can’t perform that action at this time.
0 commit comments