UNPKG

351 BTypeScriptView Raw
1import type { IssueMatch } from './issue-match';
2import type { IssuePredicate } from './issue-predicate';
3declare type IssuePredicateOption = IssuePredicate | IssueMatch | (IssuePredicate | IssueMatch)[];
4interface IssueOptions {
5 include?: IssuePredicateOption;
6 exclude?: IssuePredicateOption;
7}
8export { IssueOptions, IssuePredicateOption };