UNPKG

s-bit-agent

Version:

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

10 lines (9 loc) 379 B
import { CommandRunner } from 'nest-commander'; import { LogService } from 'src/shared/log.service'; import { AgentService } from 'src/icp/agent.service'; export declare class StatusCommand extends CommandRunner { private readonly logService; private readonly agentService; constructor(logService: LogService, agentService: AgentService); run(): Promise<void>; }