Files
2026-05-06 18:55:16 -05:00

6 lines
273 B
TypeScript

import * as cdk from '../../../core';
/**
* Throws an error if a duration is defined and not an integer number of seconds within a range.
*/
export declare function validateSecondsInRangeOrUndefined(name: string, min: number, max: number, duration?: cdk.Duration): void;