AutoBE
    Preparing search index...

    Interface AutoBeRealizeTransformerIR

    Repository-specific v1 IR for transformer artifacts.

    This IR is the canonical, persisted representation of transformer generation. It stores renderable select/transform entries without coupling the snapshot to a concrete TypeScript file layout.

    interface AutoBeRealizeTransformerIR {
        dependencies: string[];
        select: ISelectEntry[];
        transform: ITransformEntry[];
        type: "transformer";
        version: "v1";
    }
    Index

    Properties

    dependencies: string[]
    select: ISelectEntry[]
    transform: ITransformEntry[]
    type: "transformer"
    version: "v1"