mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
336 B
TypeScript
14 lines
336 B
TypeScript
import polyfill = require('./index');
|
|
|
|
declare module 'util' {
|
|
namespace promisify {
|
|
/**
|
|
* @deprecated
|
|
* Not exposed by native `util.promisify` or supported by browserify's `util.promisify`.
|
|
*
|
|
* Use `util.promisify.custom` instead.
|
|
*/
|
|
const customPromisifyArgs: typeof polyfill.customPromisifyArgs | undefined;
|
|
}
|
|
}
|