mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
373 B
TypeScript
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;
|