Type

Generate type definitions for your variables.

$   nv type
    Generating types for my-project (ts)
 
    ✔ Found 1 files
        .env
 
    Types generated successfully!
nv.d.ts
declare namespace NodeJS {
    interface ProcessEnv {
        MY_VARIABLE?: string;
    }
}
// NOTE: This file should not be edited directly. It is generated from the 'nv type' command.