Wrapper for setTimeout with controls.
Please wait for 3 seconds
<script lang="ts"> import { timeoutFnStore } from 'svelte-legos'; const { isPending, start, stop } = timeoutFnStore(() => { /* ... */ }, 3000); </script>