UNPKG

@deliverr/serverless-offline-step-functions

Version:

Serverless Offline Plugin to Support Step Functions for Local Development

15 lines (14 loc) 392 B
import type { StateDefinition } from './State'; export declare type StateMachineDefinition = { StartAt: string; States: { [stateName: string]: StateDefinition; }; }; export declare type StateMachineDescription = { name?: string; definition: StateMachineDefinition; }; export declare type StateMachinesDescription = { [key: string]: StateMachineDescription; };