DefinitelyTyped/data-driven/data-driven.d.ts
2016-04-22 14:12:45 -07:00

9 lines
319 B
TypeScript

// Type definitions for data-driven.js
// Project: https://github.com/fluentsoftware/data-driven
// Definitions by: Adam Babcock <https://github.com/mrhen>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function data_driven<T>(data: T[], callback: () => any): any;
export = data_driven