PipeableConstructorConstructor 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(...).
Source effect/Pipeable.ts:6453 lines
export interface PipeableConstructor {
new(...args: readonly any[]args: interface ReadonlyArray<T>ReadonlyArray<any>): Pipeable
}Referenced by 1 symbols