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) 354 B
import { Construct } from 'constructs'; import { NestedStack, NestedStackProps } from 'aws-cdk-lib'; import { StateMachine } from 'aws-cdk-lib/aws-stepfunctions'; export declare class ExampleExpressStepFunctionStack extends NestedStack { readonly stepFunction: StateMachine; constructor(scope: Construct, id: string, props?: NestedStackProps); }