UNPKG

@deliverr/serverless-offline-step-functions

Version:

Serverless Offline Plugin to Support Step Functions for Local Development

10 lines (9 loc) 429 B
import { StateMachineDefinition, StateMachineDescription } from '../types/StateMachineDescription'; export declare class StateMachine { private readonly _stateMachineKey; private readonly _stateMachineDescription; private constructor(); static create(stateMachineKey: string, stateMachineDescription: StateMachineDescription): StateMachine; get definition(): StateMachineDefinition; get name(): string; }