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

    Interface InitCommandOptionValues

    Option values parsed for the init command mount.

    This interface exists to keep TypeDoc output stable and fully documented (avoids inferred __type.* warnings).

    interface InitCommandOptionValues {
        cliName?: string;
        configFormat?: string;
        dynamic?: boolean;
        force?: boolean;
        withLocal?: boolean;
        yes?: boolean;
        [key: string]: unknown;
    }

    Hierarchy

    Indexable

    • [key: string]: unknown
    Index

    Properties

    cliName?: string

    CLI name used for the generated skeleton (and token substitution).

    configFormat?: string

    Config format to scaffold.

    Expected values: json, yaml, js, ts.

    dynamic?: boolean

    Reserved for future template variants; currently accepted for UX compatibility.

    force?: boolean

    When true, overwrite all colliding files.

    withLocal?: boolean

    When true, include a private .local config variant (JSON/YAML only).

    yes?: boolean

    When true, skip all collisions without overwriting (CI-friendly).