1
0
mirror of https://github.com/titanscouting/tra-analysis.git synced 2025-03-21 20:45:17 +00:00

10 lines
270 B
TypeScript
Raw Normal View History

2019-01-06 13:14:45 -06:00
export = inquire;
/**
* Requires a module only if available.
* @memberof util
* @param {string} moduleName Module to require
* @returns {?Object} Required module if available and not empty, otherwise `null`
*/
declare function inquire(moduleName: string): Object;