UNPKG

wallee

Version:
10 lines (9 loc) 425 B
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; }