@@ -6,7 +6,7 @@ import type * as fc from "fast-check"
66
77import type * as Th from "../These"
88import 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"
1010
1111export const SchemaSym = Symbol ( )
1212export type SchemaSym = typeof SchemaSym
@@ -85,15 +85,7 @@ export abstract class Schema<
8585export type SchemaAny = Schema < any , any , any , any , any , any , any >
8686export type SchemaUPI = Schema < unknown , any , any , any , any , any , any >
8787
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 , { } >
9789
9890export interface ApiSelfType < AS = unknown > {
9991 _AS : AS
@@ -109,10 +101,10 @@ export type SchemaContinuationSymbol = typeof SchemaContinuationSymbol
109101export interface HasContinuation {
110102 readonly [ SchemaContinuationSymbol ] : Schema <
111103 unknown ,
112- AnyError ,
104+ any ,
113105 unknown ,
114106 unknown ,
115- AnyError ,
107+ any ,
116108 unknown ,
117109 unknown
118110 >
0 commit comments