Files
PulumiConfig/PulumiWebServer/BashString.fsi
2022-12-31 12:46:09 +00:00

12 lines
305 B
FSharp

namespace PulumiWebServer
type BashString
[<RequireQualifiedAccess>]
module BashString =
val make : string -> BashString
/// Get the original string that was used to make this BashString.
/// This is not safe to interpolate into a Bash script.
val unsafeOriginal : BashString -> string