wallee
Version:
TypeScript/JavaScript client for wallee
10 lines (9 loc) • 425 B
TypeScript
import { HTTPHeaders, HTTPMethod, HTTPQuery } from "../runtime";
export declare class HttpBearerAuth {
private readonly apiPrefixPath;
private readonly _userId;
private readonly _authenticationKey;
constructor(userId: number, authenticationKey: string);
applyToRequest(path: string, method: HTTPMethod, queryParams: HTTPQuery, headerParameters: HTTPHeaders): Promise<void>;
private getResourcePath;
}