DefinitelyTyped/types/requireindex/index.d.ts
2019-05-14 11:15:10 -07:00

12 lines
373 B
TypeScript

// Type definitions for requireindex 1.2
// Project: https://github.com/stephenhandley/requireindex
// Definitions by: Brad Zacher <https://github.com/bradzacher>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function requireindex(
path: string,
basenames?: ReadonlyArray<string>,
): {[filename: string]: any};
export = requireindex;