5 lines
299 B
TypeScript
5 lines
299 B
TypeScript
import type { Construct } from 'constructs';
|
|
import type { QueueProps, RedriveAllowPolicy } from './index';
|
|
export declare function validateQueueProps(scope: Construct, props: QueueProps): void;
|
|
export declare function validateRedriveAllowPolicy(scope: Construct, policy: RedriveAllowPolicy): void;
|