import type { SelectorListEntry } from '../liveness/selector-list-entry.js'; import type { IBaselineRule } from './baseline-rule.js'; import type { IBaselineComputeInput } from './i-baseline-compute-input.js'; /** * The AUTHORED baseline rule (round 13): `watchFiles` and the extractor * compute's `source.files` take a glob or `{ pattern, expectEmpty: true, * reason? }`. The rule-level `expectEmpty: boolean` (the fence's OUTPUT * assertion) is unchanged. */ export interface IBaselineRuleInput extends Omit { readonly compute: IBaselineComputeInput; readonly watchFiles?: readonly SelectorListEntry[]; } //# sourceMappingURL=i-baseline-rule-input.d.ts.map