UNPKG

@mcma/client

Version:

Node module with classes and functions used to access services in an MCMA environment

9 lines (8 loc) 385 B
import { HttpRequestConfig } from "../../http"; import { Authenticator } from "../authenticator"; import { McmaApiKeyAuthenticatorConfig } from "./mcma-api-key-authenticator-config"; export declare class McmaApiKeyAuthenticator implements Authenticator { private config; constructor(config: McmaApiKeyAuthenticatorConfig); sign(config: HttpRequestConfig): Promise<void>; }