/** * Schedules a micro-task to run after breaking the current call stack * - See {@link https://github.com/kriskowal/asap} and {@link https://github.com/YuzuJS/setImmediate}. * @param func - The function to run after code has been broken out of. */ declare let nextTick: (func: () => void) => void; export { nextTick };