DefinitelyTyped/data-driven/data-driven.d.ts
2015-08-03 16:42:37 -05:00

10 lines
339 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/borisyankov/DefinitelyTyped
declare module "data-driven" {
function data_driven<T>(data:T[], callback:()=>any):any;
export = data_driven
}