Type alias ContextConditionAndJson

ContextConditionAndJson: {
    conditions: ContextConditionJson[];
    type: "and";
}

JSON representation of ContextConditionAnd

Type declaration

  • conditions: ContextConditionJson[]

    Conditions that are chained together

    Example

    [{ type: "path", path: "/api/:id" }, { type: "method", method: "GET" }]
    
  • type: "and"

    Type of the condition (always "and" for ContextConditionAnd)

Generated using TypeDoc