@@ -6,7 +6,7 @@ import type * as fc from "fast-check"
6
6
7
7
import type * as Th from "../These"
8
8
import type { Annotation } from "./annotation"
9
- import type { AnyError , CompositionE , NamedE , NextE , PrevE , RefinementE } from "./error"
9
+ import type { any , CompositionE , NamedE , NextE , PrevE , RefinementE } from "./error"
10
10
11
11
export const SchemaSym = Symbol ( )
12
12
export type SchemaSym = typeof SchemaSym
@@ -85,15 +85,7 @@ export abstract class Schema<
85
85
export type SchemaAny = Schema < any , any , any , any , any , any , any >
86
86
export type SchemaUPI = Schema < unknown , any , any , any , any , any , any >
87
87
88
- export type Standard < A , Enc = unknown > = Schema <
89
- unknown ,
90
- AnyError ,
91
- A ,
92
- A ,
93
- AnyError ,
94
- Enc ,
95
- { }
96
- >
88
+ export type Standard < A , Enc = unknown > = Schema < unknown , any , A , A , any , Enc , { } >
97
89
98
90
export interface ApiSelfType < AS = unknown > {
99
91
_AS : AS
@@ -109,10 +101,10 @@ export type SchemaContinuationSymbol = typeof SchemaContinuationSymbol
109
101
export interface HasContinuation {
110
102
readonly [ SchemaContinuationSymbol ] : Schema <
111
103
unknown ,
112
- AnyError ,
104
+ any ,
113
105
unknown ,
114
106
unknown ,
115
- AnyError ,
107
+ any ,
116
108
unknown ,
117
109
unknown
118
110
>
0 commit comments