/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * An image output from a Workflow execution. */ export interface WorkflowOutputImage { id: string; /** The output's name, as defined in the workflow */ name: string; type: "IMAGE"; value?: Vellum.VellumImage | null; }