@jiminp/tooltool
    Preparing search index...

    Type Alias AsyncTransformFunction<T>

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

    An asynchronous transform function.

    Return a new value for pure transformation, or mutate in-place and return undefined.

    Type Parameters

    • T

      The value type.