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

    Interface ScriptDef<TShell>

    Definition for a single script entry.

    interface ScriptDef<TShell extends string | boolean = string | boolean> {
        cmd: string;
        shell?: TShell;
    }

    Type Parameters

    • TShell extends string | boolean = string | boolean
    Index

    Properties

    Properties

    cmd: string

    The command string to execute.

    shell?: TShell

    Shell override for this script.