MCPcopy
hub / github.com/statelyai/xstate / Bid

Interface Bid

examples/workflow-car-auction-bids/main.ts:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { assign, createMachine, createActor } from 'xstate';
2
3interface Bid {
4 carid: string;
5 amount: number;
6 bidder: {
7 id: string;
8 firstName: string;
9 lastName: string;
10 };
11}
12
13// https://github.com/serverlessworkflow/specification/tree/main/examples#handle-car-auction-bids-example
14export const workflow = createMachine(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected