Package: effect
Module: Pipeable
Constructor type for classes whose instances implement Pipeable.
When to use
Use as the constructor-side type when a class value should be known to create
instances that support Effect-style method chaining with .pipe(...).
See
Pipeable for the instance-side contractClass for the base constructorMixin for wrapping an existing class constructorSignature
export interface PipeableConstructor {
new(...args: ReadonlyArray<any>): Pipeable
}
Since v3.15.0