mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
/**
|
|
* Queues the passed function to be ran in a macroTask
|
|
* @param task the function to execute as a macroTask
|
|
*/
|
|
export function queueMacrotask(task: () => void): void;
|