mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-08 13:30:02 +00:00
7 lines
199 B
TypeScript
7 lines
199 B
TypeScript
import { PartialProfile } from 'tabby-core'
|
|
import { SSHProfile } from './interfaces'
|
|
|
|
export abstract class SSHProfileImporter {
|
|
abstract getProfiles (): Promise<PartialProfile<SSHProfile>[]>
|
|
}
|