updeep-remeda/types/wrap.d.ts

3 lines
143 B
TypeScript
Raw Normal View History

2019-01-19 00:46:25 +00:00
import { ReturningFunction } from './types';
export default function wrap<F extends ReturningFunction, N extends number>(func: F, l?: N): any;