Home > @idealeap/pipeline > SerializablePipeOptions
SerializablePipeOptions type
Represents serializable options for a pipe. It's a type alias for the PipeOptions
interface that does not constrain the types of its input or result, making it usable in contexts where generic type parameters might not be specified.
Signature:
typescript
export type SerializablePipeOptions = PipeOptions<any, any>;
export type SerializablePipeOptions = PipeOptions<any, any>;
References: PipeOptions