This interface represents a .env file.

interface DotEnvFile {
    path: string;
    variables: {
        [name: string]: string;
    };
}

Properties

Properties

path: string

Path to the .env file.

variables: {
    [name: string]: string;
}

Variables of the .env file.

Type declaration

  • [name: string]: string