Module

Dotenv.Internal.Types

Package
purescript-dotenv
Repository
nicholassaunders/purescript-dotenv

This module contains data types representing parsed .env content and the unmodified environment.

#Environment Source

type Environment = Object String

Environment variables

#Name Source

type Name = String

The name of a setting

#Setting Source

type Setting = Tuple Name Value

The conjunction of a setting name and the corresponding value

#Settings Source

type Settings = Array (Tuple Name Value)

A collection of settings