Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789
  1. export = inquire;
  2. /**
  3. * Requires a module only if available.
  4. * @memberof util
  5. * @param {string} moduleName Module to require
  6. * @returns {?Object} Required module if available and not empty, otherwise `null`
  7. */
  8. declare function inquire(moduleName: string): Object;