liveperson-functions-cli
Version:
LivePerson Functions CLI
10 lines (9 loc) • 347 B
TypeScript
import { ISecretClient } from './IsecretClient';
import { ISecretEntry } from './IsecretEntry';
export declare class VaultSecretClient implements ISecretClient {
private path;
private fs;
constructor(fs?: any);
readSecret(key: string): Promise<ISecretEntry>;
updateSecret(updatedSecret: ISecretEntry): Promise<ISecretEntry>;
}