@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Type Alias PartialMatchHandlers<T, R>

    PartialMatchHandlers: Partial<{ [K in StatusOf<T>]: (r: Narrow<T, K>) => R }> & {
        _: (r: TaskResult<T>) => R;
    }

    Partial handler map with a required _ catchall. Any omitted status arm routes to _, which receives the full TaskResult<T> type.

    Type Parameters

    • T
    • R