readonly [Check<any>, ...Check<any>[]]Non-empty array of validation Check values attached to an AST node via Base.checks.
Details
Checks are run after basic type matching succeeds. They represent
refinements like minLength, pattern, int, etc.
Source effect/SchemaAST.ts:5821 lines
export type type Checks = readonly [
Check<any>,
...Check<any>[]
]
Non-empty array of validation
Check
values attached to an AST node
via
Base.checks
.
Details
Checks are run after basic type matching succeeds. They represent
refinements like minLength, pattern, int, etc.
Checks = readonly [type Check<T> = Filter<T> | FilterGroup<T>Check<any>, ...interface Array<T>Array<type Check<T> = Filter<T> | FilterGroup<T>Check<any>>]Referenced by 10 symbols