mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-27 14:59:57 +00:00
9 lines
175 B
TypeScript
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[]>
|
|
}
|