@edgible-team/sdk
    Preparing search index...

    Interface StackInput

    Stack source: pre-parsed documents, or raw YAML + substitution env.

    interface StackInput {
        documents?: {}[];
        env?: EnvRecord;
        yaml?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    documents?: {}[]

    Already-parsed canonical documents (e.g. from loadStackFile).

    env?: EnvRecord

    Env record for ${VAR} substitution when yaml is given (default {}).

    yaml?: string

    Raw multi-document stack YAML, parsed with parseStackDocuments.