UNPKG

@aws-cdk/assert

Version:

An assertion library for use with CDK Apps

9 lines (8 loc) 309 B
import { Assertion } from '../assertion'; import { Inspector } from '../inspector'; export declare class NegatedAssertion<I extends Inspector> extends Assertion<I> { private readonly negated; constructor(negated: Assertion<I>); assertUsing(inspector: I): boolean; get description(): string; }