(ast: A, encoding: Encoding | undefined)
| 3073 | * @since 4.0.0 |
| 3074 | */ |
| 3075 | export class Filter<in E> extends Pipeable.Class { |
| 3076 | readonly _tag = "Filter" |
| 3077 | readonly run: (input: E, self: AST, options: ParseOptions) => SchemaIssue.Issue | undefined |
| 3078 | readonly annotations: Schema.Annotations.Filter | undefined |
| 3079 | /** |
| 3080 | * Whether the parsing process should be aborted after this check has failed. |
| 3081 | */ |
| 3082 | readonly aborted: boolean |
| 3083 | |
| 3084 | constructor( |
| 3085 | run: (input: E, self: AST, options: ParseOptions) => SchemaIssue.Issue | undefined, |
no test coverage detected
searching dependent graphs…