Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NotStatement

import type { NotStatement } from "https://aws-api.deno.dev/v0.4/services/wafv2.ts?docs=full";

A logical rule statement used to negate the results of another rule statement. You provide one "Statement" within the NotStatement.

interface NotStatement {
Statement: Statement;
}

§Properties

§
Statement: Statement
[src]

The statement to negate. You can use any statement that can be nested.