tabby/tabby-ssh/src/api/importer.ts

7 lines
199 B
TypeScript

import { PartialProfile } from 'tabby-core'
import { SSHProfile } from './interfaces'
export abstract class SSHProfileImporter {
abstract getProfiles (): Promise<PartialProfile<SSHProfile>[]>
}