import type * as Extend from "../index"; /** * The entry point of the workflow. Every workflow must have exactly one trigger step, and it must route to exactly one `PARSE` step. * * See the [Trigger step docs](https://docs.extend.ai/2026-02-09/product/workflows/configuring-workflows-via-api#trigger-step). */ export interface TriggerStepDefinition { /** Unique name for this step. */ name: string; /** Must contain exactly one downstream step, and that step should be the workflow's `PARSE` step. */ next?: Extend.SimpleNextEntry[]; }