mirror of
https://github.com/Smaug123/PulumiConfig
synced 2025-10-05 16:48:39 +00:00
12 lines
305 B
FSharp
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
|