Codibre/fluent-iterable

View on GitHub
src/types/catch-callback.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Mapper } from 'augmentative-iterable';

export type AsyncCatchCallback = Mapper<any, void | Promise<void>>;
export type CatchCallback = Mapper<any, void>;