s-bit-agent
Version:
s.BitAgent is a simple Bitwarden CLI wrapper which provides a SSH2 Key Agent solution for Bitwarden.
13 lines (12 loc) • 585 B
TypeScript
import { CommandRunner } from 'nest-commander';
import { AutostartService } from 'src/autostart/autostart.service';
import { LogService } from 'src/shared/log.service';
export declare class SetupCommand extends CommandRunner {
private readonly logService;
private readonly autostartService;
constructor(logService: LogService, autostartService: AutostartService);
parseType(value: string): Promise<string>;
parseUninstall(): Promise<boolean>;
parseArgs(value: string): Promise<string>;
run(params: string[], options: Record<string, any>): Promise<never>;
}