/** * This file was auto-generated by Fern from our API Definition. */ /** * A number output from a Workflow execution. */ export interface WorkflowOutputNumber { id: string; /** The output's name, as defined in the workflow */ name: string; type: "NUMBER"; value?: number | null; }