bit more detail

pull/17004/head
Rich Harris 2 weeks ago
parent 1d026b9288
commit b213aeac71

@ -882,6 +882,10 @@ export function eager(fn) {
* Frameworks like SvelteKit can use this to preload data when the user touches or * Frameworks like SvelteKit can use this to preload data when the user touches or
* hovers over a link, making any subsequent navigation feel instantaneous. * hovers over a link, making any subsequent navigation feel instantaneous.
* *
* The `fn` parameter is a synchronous function that modifies some state. The
* state changes will be reverted after the fork is initialised, then reapplied
* if and when the fork is eventually committed.
*
* @param {() => void} fn * @param {() => void} fn
* @returns {{ commit: () => void, discard: () => void }} * @returns {{ commit: () => void, discard: () => void }}
*/ */

Loading…
Cancel
Save