UNPKG

the-ldk

Version:

Welcome to the LDK! A collection of custom AWS CDK constructs to help you build serverless applications faster.

8 lines (7 loc) 367 B
import { Construct } from 'constructs'; import { StateMachine } from 'aws-cdk-lib/aws-stepfunctions'; import { ExpressStepFunctionProps } from '../../types/ExpressStepFunction.type'; export declare class ExpressStepFunction extends Construct { readonly stateMachine: StateMachine; constructor(scope: Construct, id: string, props: ExpressStepFunctionProps); }