Type Alias ConnectionProfile

ConnectionProfile: {
    addNewServiceAccount(): Promise<IdObjectSkeletonInterface>;
    deleteConnectionProfile(host: string): void;
    findConnectionProfiles(
        connectionProfiles: ConnectionsFileInterface,
        host: string,
    ): SecureConnectionProfileInterface[];
    getConnectionProfile(): Promise<ConnectionProfileInterface>;
    getConnectionProfileByHost(
        host: string,
    ): Promise<ConnectionProfileInterface>;
    getConnectionProfilesPath(): string;
    initConnectionProfiles(): Promise<void>;
    loadConnectionProfile(): Promise<boolean>;
    loadConnectionProfileByHost(host: string): Promise<boolean>;
    saveConnectionProfile(host: string): Promise<boolean>;
}

Type declaration