effect-io-ai

Package: effect
Module: Pipeable

Pipeable.PipeableConstructor

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

Signature

export interface PipeableConstructor {
  new(...args: ReadonlyArray<any>): Pipeable
}

Source

Since v3.15.0