figureone
    Preparing search index...

    Type Alias TypeSlideTransitionCallback

    TypeSlideTransitionCallback:
        | string
        | ((done: () => void, index: number, from: TypeSlideFrom) => void)

    Callback definition for slide transition.

    (done: () => void, currentIndex: number, from: TypeSlideFrom) => void

    When using Recorder, a string from a FunctionMap can be used, as long as the function the string maps to allows for the same parameters as above.

    Important note: the done parameter MUST be called at the end of the transition to allow the slide to progress to steady state.