Module Process.Shell

type t =
| Bash
| Zsh
;
let isZsh: string => option(t);
let readFromEnv: unit => t;
module Bashrc: { ... };
module Zshrc: { ... };
let getConfigLocation: ?⁠shell:t => ?⁠platform:Os.Platform.t => unit => string;