UNPKG

373 BTypeScriptView Raw
1// Type definitions for requireindex 1.2
2// Project: https://github.com/stephenhandley/requireindex
3// Definitions by: Brad Zacher <https://github.com/bradzacher>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6declare function requireindex(
7 path: string,
8 basenames?: ReadonlyArray<string>,
9): {[filename: string]: any};
10
11export = requireindex;