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>

