Skip to main content
function setImmediate
setImmediate<T = void>(
value?: T,
options?: TimerOptions,
): Promise<T>
Deprecated
import {
  setImmediate,
} from 'node:timers/promises';

const res = await setImmediate('result');

console.log(res);  // Prints 'result'

Type Parameters

T = void

Parameters

optional
value: T

A value with which the promise is fulfilled.

optional
options: TimerOptions

Return Type

Promise<T>
Back to top