Stone.js API
    Preparing search index...

    Interface PipeDefaultInstance<T, R>

    Represents a pipe instance that contains a default pipe function.

    interface PipeDefaultInstance<T = unknown, R = T> {
        handle: FunctionalPipe<T, R>;
    }

    Type Parameters

    • T = unknown

      The type of the passable object.

    • R = T

      The type of the return value from the pipeline execution, defaulting to T.

      An object representing a default function used as part of the pipeline. The key is the handle property, which is a function that takes specific arguments.

    Index
    handle: FunctionalPipe<T, R>