UNPKG

tsoid

Version:

Typed functional library to deal with async operations.

3 lines (2 loc) 154 B
import { FunctionA1 } from '../types'; export default function filter<A>(predP: FunctionA1<A, Promise<boolean>>, traversable: A[]): Promise<A[] | Error>;