UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

9 lines (8 loc) 247 B
import { IConstruct } from 'constructs'; /** * Breadth-first iterator over the construct tree */ export declare function iterateBfs(root: IConstruct): Generator<{ construct: IConstruct; parent: IConstruct | undefined; }, void, unknown>;