mirror of
https://github.com/reactivecircus/android-emulator-runner.git
synced 2026-09-01 18:19:32 +00:00
07b0366e7b
* main: Prepare for release 2.12.0. Add support for using google_apis_playstore system images. Fix README.md typo
24 lines
1.2 KiB
TypeScript
24 lines
1.2 KiB
TypeScript
import ifm = require('./interfaces');
|
|
export declare class BasicCredentialHandler implements ifm.IRequestHandler {
|
|
username: string;
|
|
password: string;
|
|
constructor(username: string, password: string);
|
|
prepareRequest(options: any): void;
|
|
canHandleAuthentication(response: ifm.IHttpClientResponse): boolean;
|
|
handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise<ifm.IHttpClientResponse>;
|
|
}
|
|
export declare class BearerCredentialHandler implements ifm.IRequestHandler {
|
|
token: string;
|
|
constructor(token: string);
|
|
prepareRequest(options: any): void;
|
|
canHandleAuthentication(response: ifm.IHttpClientResponse): boolean;
|
|
handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise<ifm.IHttpClientResponse>;
|
|
}
|
|
export declare class PersonalAccessTokenCredentialHandler implements ifm.IRequestHandler {
|
|
token: string;
|
|
constructor(token: string);
|
|
prepareRequest(options: any): void;
|
|
canHandleAuthentication(response: ifm.IHttpClientResponse): boolean;
|
|
handleAuthentication(httpClient: ifm.IHttpClient, requestInfo: ifm.IRequestInfo, objs: any): Promise<ifm.IHttpClientResponse>;
|
|
}
|