Backstage
    Preparing search index...

    Represents a snapshot of an extension in the app tree.

    interface ExtensionSnapshotNode {
        children?: Record<string, ExtensionSnapshotNode[]>;
        disabled?: true;
        id: string;
        outputs?: string[];
    }
    Index

    Properties

    children?: Record<string, ExtensionSnapshotNode[]>

    Child extensions organized by input name

    disabled?: true

    Whether this extension is disabled

    id: string

    The ID of the extension

    outputs?: string[]

    The IDs of output data refs produced by this extension