@deliverr/serverless-offline-step-functions
Version:
Serverless Offline Plugin to Support Step Functions for Local Development
10 lines (9 loc) • 394 B
TypeScript
import { StateMachinesDescription } from '../types/StateMachineDescription';
import { StateMachine } from './StateMachine';
export declare class StateMachines {
private readonly _stateMachines;
private constructor();
static create(stateMachines: StateMachinesDescription): StateMachines;
getStateMachineBy(name: string): StateMachine;
get stateMachines(): StateMachine[];
}