Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.117.132.79
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
@types /
node /
timers /
Delete
Unzip
Name
Size
Permission
Date
Action
promises.d.ts
1.91
KB
-rwxrwxr-x
2022-08-30 11:49
Save
Rename
/** * The `timers/promises` API provides an alternative set of timer functions * that return `Promise` objects. The API is accessible via`require('timers/promises')`. * * ```js * import { * setTimeout, * setImmediate, * setInterval, * } from 'timers/promises'; * ``` * @since v15.0.0 */ declare module 'timers/promises' { import { TimerOptions } from 'node:timers'; /** * ```js * import { * setTimeout, * } from 'timers/promises'; * * const res = await setTimeout(100, 'result'); * * console.log(res); // Prints 'result' * ``` * @since v15.0.0 * @param [delay=1] The number of milliseconds to wait before fulfilling the promise. * @param value A value with which the promise is fulfilled. */ function setTimeout<T = void>(delay?: number, value?: T, options?: TimerOptions): Promise<T>; /** * ```js * import { * setImmediate, * } from 'timers/promises'; * * const res = await setImmediate('result'); * * console.log(res); // Prints 'result' * ``` * @since v15.0.0 * @param value A value with which the promise is fulfilled. */ function setImmediate<T = void>(value?: T, options?: TimerOptions): Promise<T>; /** * Returns an async iterator that generates values in an interval of `delay` ms. * * ```js * import { * setInterval, * } from 'timers/promises'; * * const interval = 100; * for await (const startTime of setInterval(interval, Date.now())) { * const now = Date.now(); * console.log(now); * if ((now - startTime) > 1000) * break; * } * console.log(Date.now()); * ``` * @since v15.9.0 */ function setInterval<T = void>(delay?: number, value?: T, options?: TimerOptions): AsyncIterable<T>; } declare module 'node:timers/promises' { export * from 'timers/promises'; }