This interface represents a .env file.

interface DotEnvFile {
    path: string;
    variables: Record<string, string>;
}

Properties

Properties

path: string

Path to the .env file.

variables: Record<string, string>

Variables of the .env file.