tabby/terminus-terminal/src/api/shellProvider.ts
2019-06-14 23:47:48 +02:00

9 lines
175 B
TypeScript

import { Shell } from './interfaces'
/**
* Extend to add support for more shells
*/
export abstract class ShellProvider {
abstract async provide (): Promise<Shell[]>
}