(version?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8, annotations?: Annotations.Filter)
| 6613 | * into an {@link SchemaIssue.Composite}. |
| 6614 | * |
| 6615 | * @category models |
| 6616 | * @since 3.10.0 |
| 6617 | */ |
| 6618 | export type FilterOutput = |
| 6619 | | undefined |
| 6620 | | boolean |
| 6621 | | FilterIssue |
| 6622 | | ReadonlyArray<FilterIssue> |
| 6623 | |
| 6624 | /** |
| 6625 | * Groups multiple checks into a single {@link SchemaAST.FilterGroup}, applying |
| 6626 | * optional shared annotations to the group as a whole. |
| 6627 | * |
| 6628 | * @category constructors |
| 6629 | * @since 4.0.0 |
| 6630 | */ |
| 6631 | export function makeFilterGroup<T>( |
| 6632 | checks: readonly [SchemaAST.Check<T>, ...Array<SchemaAST.Check<T>>], |
nothing calls this directly
no test coverage detected
searching dependent graphs…