Vscode.ShellQuotingOptions
include Interop.Js.T
type t
val t_of_js : Ojs.t -> t
val t_to_js : t -> Ojs.t
type escapeLiteral = {
escapeChar : string;
charsToEscape : string;
}
type escape = [
| `String of string
| `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