Package: effect
Module: SchemaAST
Represents a composite validation check grouping multiple Check values.
Details
Created by calling .and() on a Filter or another FilterGroup.
All inner checks are run; failures from aborted filters still stop
evaluation.
See
FilterCheckSignature
declare class FilterGroup<E> { constructor(
checks: readonly [Check<E>, ...Array<Check<E>>],
annotations: Schema.Annotations.Filter | undefined = undefined
) }
Since v4.0.0