mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2025-12-08 20:58:55 +00:00
10 lines
270 B
TypeScript
10 lines
270 B
TypeScript
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;
|