LogicOperator

[ Interface ]

export interface LogicOperator {
    logic: 'AND' | 'OR';
}

Defines a logical operation.

This interface is used in filters.

Properties

Name

Type

Description

logic

string

AND or OR

LogicOperator 1:

Available from version 1.10