Skip to content

Type Alias: InterceptorNext()

ts
type 
InterceptorNext
= () => void |
Promise
<void>;

Defined in: packages/core/src/types/interceptor.ts:16

Function to call the next interceptor in the chain. MUST be awaited.

Returns

void | Promise<void>

Released under the MIT license