Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

scheduleMicrotask

Schedules a microtask. This can be useful to schedule state updates after rendering.

function scheduleMicrotask(callback: () => void): void;
§
scheduleMicrotask(callback: () => void): void
[src]

§Parameters

§
callback: () => void
[src]

§Return Type