Stone.js API
    Preparing search index...

    Type Alias PipeType<T, R, Args>

    PipeType:
        | PipeAlias
        | PipeClass<T, R, Args>
        | FunctionalPipe<T, R>
        | FactoryPipe<T, R, Args>

    A type that can either be a function or a string, representing a pipeline step.

    A pipe can either be a function that performs an action or a string identifier to be resolved.

    Type Parameters

    • T = unknown
    • R = T
    • Args extends any[] = any[]