interface NearExpression {
    negate?: boolean;
    otherTerms: OtherTerm[];
    startTerm: string;
}

Hierarchy (View Summary)

Properties

negate?: boolean

If true, the inverse expression will be created.

otherTerms: OtherTerm[]

The other terms to check against the reference term. See NEAR for an example.

startTerm: string

The reference term.