UI for Zipcoin Blue

123456789101112
  1. import * as SSHConfigModule from 'ssh-config';
  2. export declare const SSHConfig: typeof SSHConfigModule;
  3. export declare function loadFromPath(p: string): Promise<SSHConfigModule.SSHConfig>;
  4. export declare function isDirective(entry: any): entry is SSHConfigModule.ConfigDirective;
  5. export declare function isHostDirective(entry: SSHConfigModule.Config): entry is SSHConfigModule.ConfigHostDirective;
  6. export declare function getConfigPath(): string;
  7. export declare function findHostSection(conf: SSHConfigModule.SSHConfig, host: string): SSHConfigModule.ConfigHostDirective | null;
  8. export declare function ensureHostAndKeyPath(conf: SSHConfigModule.SSHConfig, conn: {
  9. host: string;
  10. port?: number;
  11. }, keyPath: string): void;