Module
Dotenv.Internal.Types
- Package
- purescript-dotenv
- Repository
- nsaunders/purescript-dotenv
This module contains data types representing .env
settings.
#ResolvedValue Source
type ResolvedValue = Maybe String
The type of a resolved value
#UnresolvedValue Source
data UnresolvedValue
The expressed value of a setting, which has not been resolved yet
Constructors
LiteralValue String
VariableSubstitution String
CommandSubstitution String (Array String)
ValueExpression (Array UnresolvedValue)