9 lines
313 B
TypeScript
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;
|