/
githubmirror
/
tabby
Обзор
Документация
Войти
/
githubmirror
/
tabby
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tabby-ssh/src/api/importer.ts
10 строк
301 B
Eugene Pankov
ssh: try other OpenSSH key types besides rsa
23 фев 2022, 00:03
Не верифицирован
23 фев 2022, 00:03
fdca83f
Код
Авторство
О чём код?
import { PartialProfile } from 'tabby-core' import { SSHProfile } from './interfaces' export abstract class SSHProfileImporter { abstract getProfiles (): Promise<PartialProfile<SSHProfile>[]> } export abstract class AutoPrivateKeyLocator { abstract getKeys (): Promise<[string, Buffer][]> }