AnyA type-level constraint for working with any Layer type.
When to use
Use to constrain generic parameters or layer collections to any Layer
value while preserving its provided, error, and required service types for
inference.
Details
This interface is used to constrain generic types to Layer values without
specifying exact type parameters.
Source effect/Layer.ts:1277 lines
export interface Any {
readonly [const TypeId: "~effect/Layer"TypeId]: {
readonly _ROut: any_ROut: any
readonly _E: any_E: any
readonly _RIn: any_RIn: any
}
}Referenced by 9 symbols