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) • 408 B
TypeScript
import { AutostartService } from './autostart.interface';
export declare class SystemdAutostartService implements AutostartService {
name: string;
canActivate(): Promise<boolean>;
install(command: string, name: string, marker: string): Promise<boolean>;
uninstall(marker: string): Promise<boolean>;
isInstalled(marker: string): Promise<boolean>;
private generateServiceFileContent;
}