mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-29 21:12:40 +00:00
refactor: move to eslint
This commit is contained in:
@@ -23,18 +23,15 @@ export interface HttpClientInterface {
|
||||
*
|
||||
* @param request Request to send
|
||||
*/
|
||||
request<T extends SCResponses>(
|
||||
request: HttpClientRequest,
|
||||
): Promise<HttpClientResponse<T>>;
|
||||
request<T extends SCResponses>(request: HttpClientRequest): Promise<HttpClientResponse<T>>;
|
||||
}
|
||||
|
||||
/**
|
||||
* A map of headers
|
||||
*/
|
||||
export interface HttpClientHeaders {
|
||||
/* tslint:disable:no-any */
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
[key: string]: any;
|
||||
/* tslint:enable:no-any */
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user