@deliverr/serverless-offline-step-functions
Version:
Serverless Offline Plugin to Support Step Functions for Local Development
10 lines (9 loc) • 467 B
TypeScript
import type { StateInfo } from './types/State';
export declare class StateInfoHandler {
private static INSTANCE;
private statesHandlersMap;
private constructor();
static getInstance(): StateInfoHandler;
setStateInfo(stateMachineName: string, stateName: string, handlerPath: string, handlerName: string, environment: Record<string, string> | undefined): void;
getStateInfo(stateMachineName: string, stateName: string): StateInfo | undefined;
}