Module Vscode.ShellQuotingOptions

include Interop.Js.T
type t
val t_of_js : Ojs.t -> t
val t_to_js : t -> Ojs.t
type escapeLiteral = {
  1. escapeChar : string;
  2. charsToEscape : string;
}
type escape = [
  1. | `String of string
  2. | `Literal of escapeLiteral
]
val escape : t -> escape option
val strong : t -> string option
val weak : t -> string option
val create : ?escape:escape -> ?strong:string -> ?weak:string -> unit -> t