@archastro/sdk
    Preparing search index...

    Interface RuntimeEnvVar

    A single runtime environment variable available within a script execution context, including its key, description, and origin.

    interface RuntimeEnvVar {
        description?: string;
        key: string;
        source: string;
    }
    Index

    Properties

    description?: string

    Human-readable explanation of the variable's purpose. null if no description has been set.

    key: string

    The name of the environment variable as it appears in the script runtime (e.g. DATABASE_URL).

    source: string

    Origin of the environment variable. One of "app" (set on the application) or "org" (inherited from the organization).