UNPKG

detect-shells

Version:

Detect shells installed on a system

5 lines (4 loc) 239 B
import { FoundShell } from './shells/shared'; export declare type Shell = FoundShell; export declare function launchShell(shell: Shell, path: string): Promise<void>; export declare function getAvailableShells(): Promise<readonly Shell[]>;