UNPKG

liveperson-functions-cli

Version:
13 lines (12 loc) 377 B
import { IFileReplacerAuth } from './IFileReplacer'; /** * Implementation of the swift auth strategy. Uses username and password. */ export declare class SwiftAuth implements IFileReplacerAuth { private username; private password; constructor(username: string, password: string); getAuthHeaders(host: string): Promise<{ 'x-auth-token': any; }>; }