Files
agent-claw/cdk/node_modules/aws-cdk-lib/assertions/lib/private/cyclic.d.ts
2026-05-06 18:55:16 -05:00

9 lines
313 B
TypeScript

import type { Template } from './template';
/**
* Check a template for cyclic dependencies
*
* This will make sure that we don't happily validate templates
* in unit tests that wouldn't deploy to CloudFormation anyway.
*/
export declare function checkTemplateForCyclicDependencies(template: Template): void;