@jiminp/tooltool
    Preparing search index...

    Type Alias AsyncTransformFunction<T>

    AsyncTransformFunction:
        | ((t: T) => Promise<T | undefined>)
        | ((t: T) => Promise<void>)

    An asynchronous transform function that takes a value and optionally returns a transformed value.

    Type Parameters

    • T

      The type of the value being transformed.

    The value to transform.

    A promise that resolves to the transformed value, or undefined if the transformation was done in-place or no change is needed.

    applyAsyncTransforms for applying multiple async transform functions.