/** * This file was auto-generated by Fern from our API Definition. */ /** * * `INITIATED` - INITIATED * * `STREAMING` - STREAMING * * `FULFILLED` - FULFILLED * * `REJECTED` - REJECTED */ export type WorkflowNodeResultEventState = "INITIATED" | "STREAMING" | "FULFILLED" | "REJECTED"; export declare const WorkflowNodeResultEventState: { readonly Initiated: "INITIATED"; readonly Streaming: "STREAMING"; readonly Fulfilled: "FULFILLED"; readonly Rejected: "REJECTED"; };