s-bit-agent
Version:
s.BitAgent is a simple Bitwarden CLI wrapper which provides a SSH2 Key Agent solution for Bitwarden.
12 lines (11 loc) • 439 B
TypeScript
import { BitwardenKeyCreateItem, BitwardenKeyItem } from './bitwarden.type';
export declare class BitwardenService {
private logging;
enableLogging(): void;
private find;
run(session: string | null, ...args: string[]): string;
unlock(password: string): string;
lock(session: string): void;
create(object: BitwardenKeyCreateItem, session: string): string;
getKeyItems(session: string): BitwardenKeyItem[];
}