We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
svelte
1 parent de5ce63 commit 83881c6Copy full SHA for 83881c6
apps/svelte.dev/content/docs/svelte/03-template-syntax/12-use.md
@@ -51,17 +51,16 @@ The `Action` interface receives three optional type arguments — a node type (w
51
```svelte
52
<!--- file: App.svelte --->
53
<script>
54
- import { on } from 'svelte/events';
55
-
56
/**
57
* @type {import('svelte/action').Action<
58
* HTMLDivElement,
59
- * null,
+ * undefined,
60
* {
61
* onswiperight: (e: CustomEvent) => void;
62
* onswipeleft: (e: CustomEvent) => void;
63
* // ...
64
- * }>}
+ * }
+ * >}
65
*/
66
function gestures(node) {
67
$effect(() => {
0 commit comments