AndCondition interface

代表一組條件,如果所有條件皆為 true,則評估為 true。

簽名:

export interface AndCondition 

屬性

屬性 類型 說明
限制條件 陣列<OneOfCondition> 條件的集合。

AndCondition.conditions

條件的集合。

簽名:

conditions?: Array<OneOfCondition>;