import { JqlQueryClauseAsResponse } from "../definitions/JqlQueryClauseAsResponse"; export interface CompoundClauseAsResponse { clauses: JqlQueryClauseAsResponse; /** * The operator between the clauses. */ operator: "and" | "or" | "not"; } //# sourceMappingURL=CompoundClauseAsResponse.d.ts.map