Package: effect
Module: Pipeable
Returns a subclass of the provided class that adds the standard pipe
method.
When to use
Use to add pipe support to an existing class without extending a base class or modifying its prototype.
Details
The original constructor and instance members are preserved, and the added
method delegates to pipeArguments.
See
Prototype for a reusable prototype objectClass for a base constructor to extendSignature
declare const Mixin: <TBase extends new (...args: ReadonlyArray<any>) => any>(klass: TBase) => TBase & PipeableConstructor
Since v4.0.0