UNPKG

s-bit-agent

Version:

s.BitAgent is a simple Bitwarden CLI wrapper which provides a SSH2 Key Agent solution for Bitwarden.

16 lines (15 loc) 746 B
import { CommandRunner } from 'nest-commander'; import { LogService } from 'src/shared/log.service'; import { KeyService } from 'src/shared/key.service'; import { BitwardenService } from 'src/bitwarden/bitwarden.service'; import { ClientService } from 'src/icp/client.service'; export declare class NewCommand extends CommandRunner { private readonly logService; private readonly keyService; private readonly bitService; private readonly clientService; constructor(logService: LogService, keyService: KeyService, bitService: BitwardenService, clientService: ClientService); parseModulus(modulus: string): string; getModulusChoices(): string[]; run(params: string[], options: Record<string, any>): Promise<void>; }