waterfall.d.ts 131 B

12345
  1. import types = require('./types');
  2. declare function waterfall(tasks: types.AnyFn[], cb?: types.AnyFn): void;
  3. export = waterfall;