- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
9 lines
351 B
TypeScript
9 lines
351 B
TypeScript
import type { IssueMatch } from './issue-match';
|
|
import type { IssuePredicate } from './issue-predicate';
|
|
declare type IssuePredicateOption = IssuePredicate | IssueMatch | (IssuePredicate | IssueMatch)[];
|
|
interface IssueOptions {
|
|
include?: IssuePredicateOption;
|
|
exclude?: IssuePredicateOption;
|
|
}
|
|
export { IssueOptions, IssuePredicateOption };
|