Encapsulates the properties of an operator constraint. An operator constraint defines if some operator is available only for specific scope like a project scope.

interface OperatorConstraint {
    operator?: string;
    supportedScopes?: string[];
}

Properties

operator?: string
supportedScopes?: string[]

Gets or sets the list of scopes that this type supports.