import type { IWiringSourceInput } from './i-wiring-source-input.js'; import type { IWiringRule } from './wiring-rule.js'; /** The AUTHORED wiring rule (round 13): every source takes the markable {@link IWiringSourceInput}. */ export interface IWiringRuleInput extends Omit { readonly declared?: IWiringSourceInput; readonly registered?: IWiringSourceInput | readonly IWiringSourceInput[]; readonly chain?: readonly IWiringSourceInput[]; } //# sourceMappingURL=i-wiring-rule-input.d.ts.map