liveperson-functions-cli
Version:
LivePerson Functions CLI
13 lines (12 loc) • 377 B
TypeScript
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;
}>;
}