campfire.js
    Preparing search index...

    Type Alias Callbackified<T, U, E>

    Callbackified: (cb: Callback<U, E>, ...args: T) => void

    Represents a function that accepts a callback as its first argument, followed by any other arguments.

    Type Parameters

    • T extends any[]

      The types of the function arguments (excluding the callback)

    • U

      The type of the successful result passed to the callback

    • E

      The type of the error that might be passed to the callback

    Type declaration