Module Vscode.TerminalOptions

include Interop.Js.T
type t
val t_of_js : Ojs.t -> t
val t_to_js : t -> Ojs.t
type shellArgs = [
  1. | `Arg of string
  2. | `Args of string list
]
type cwd = [
  1. | `String of string
  2. | `Uri of Uri.t
]
val name : t -> string option
val shellPath : t -> string option
val shellArgs : t -> shellArgs option
val cwd : t -> cwd option
val env : t -> string option Interop.Dict.t option
val strictEnv : t -> bool
val hideFromUser : t -> bool