UNPKG

@unito/integration-debugger

Version:

The Unito Integration Debugger

21 lines (20 loc) 381 B
import * as CrawlerDriver from '../crawlerDriver'; /** * Check: Relations of an item are not duplicate. * * @example * The item "foo" cannot have: * * { * "fields": {}, * "relations": [ * { * "name": "foo" * }, * { * "name": "foo" // <- duplicate! * } * ] * } */ declare const check: CrawlerDriver.StepCheck; export default check;