@karmaniverous/get-dotenv
    Preparing search index...

    Interface EditDotenvFileResult

    Result of a successful FS-level dotenv edit.

    interface EditDotenvFileResult {
        changed: boolean;
        createdFromTemplate: boolean;
        path: string;
    }
    Index

    Properties

    changed: boolean

    Whether the resulting file content differed from the prior content.

    createdFromTemplate: boolean

    Whether the file was created from a template during this operation.

    path: string

    Absolute path to the edited dotenv file.