diff --git a/packages/svelte/src/attachments/index.js b/packages/svelte/src/attachments/index.js
index 0ff1f60fb1..f5e26571c7 100644
--- a/packages/svelte/src/attachments/index.js
+++ b/packages/svelte/src/attachments/index.js
@@ -32,6 +32,19 @@ export function createAttachmentKey() {
}
/**
+ * Converts an [action](https://svelte.dev/docs/svelte/use) into an [attachment](https://svelte.dev/docs/svelte/@attach) keeping the same behavior.
+ * It's useful if you want to start using attachments on components but you have actions provided by a library.
+ *
+ * Note that the second argument, if provided, must be a function that _returns_ the argument to the
+ * action function, not the argument itself.
+ *
+ * ```svelte
+ *
+ *
...
+ *
+ *
+ * bar)}>...
+ * ```
* @template {EventTarget} E
* @template {unknown} T
* @overload
@@ -40,18 +53,39 @@ export function createAttachmentKey() {
* @returns {Attachment}
*/
/**
+ * Converts an [action](https://svelte.dev/docs/svelte/use) into an [attachment](https://svelte.dev/docs/svelte/@attach) keeping the same behavior.
+ * It's useful if you want to start using attachments on components but you have actions provided by a library.
+ *
+ * Note that the second argument, if provided, must be a function that _returns_ the argument to the
+ * action function, not the argument itself.
+ *
+ * ```svelte
+ *
+ * ...
+ *
+ *
+ * bar)}>...
+ * ```
* @template {EventTarget} E
* @overload
* @param {Action | ((element: E) => void | ActionReturn)} action The action function
* @returns {Attachment}
*/
/**
- * Converts an Action into an Attachment keeping the same behavior. It's useful if you want to start using
- * attachments on Components but you have library provided actions.
+ * Converts an [action](https://svelte.dev/docs/svelte/use) into an [attachment](https://svelte.dev/docs/svelte/@attach) keeping the same behavior.
+ * It's useful if you want to start using attachments on components but you have actions provided by a library.
*
* Note that the second argument, if provided, must be a function that _returns_ the argument to the
* action function, not the argument itself.
*
+ * ```svelte
+ *
+ * ...
+ *
+ *
+ * bar)}>...
+ * ```
+ *
* @template {EventTarget} E
* @template {unknown} T
* @param {Action | ((element: E, arg: T) => void | ActionReturn)} action The action function
diff --git a/packages/svelte/types/index.d.ts b/packages/svelte/types/index.d.ts
index 59c8d7ff15..c03da56856 100644
--- a/packages/svelte/types/index.d.ts
+++ b/packages/svelte/types/index.d.ts
@@ -659,9 +659,37 @@ declare module 'svelte/attachments' {
* @since 5.29
*/
export function createAttachmentKey(): symbol;
-
+ /**
+ * Converts an [action](https://svelte.dev/docs/svelte/use) into an [attachment](https://svelte.dev/docs/svelte/@attach) keeping the same behavior.
+ * It's useful if you want to start using attachments on components but you have actions provided by a library.
+ *
+ * Note that the second argument, if provided, must be a function that _returns_ the argument to the
+ * action function, not the argument itself.
+ *
+ * ```svelte
+ *
+ * ...
+ *
+ *
+ * bar)}>...
+ * ```
+ * */
export function fromAction(action: Action | ((element: E, arg: T) => void | ActionReturn), fn: () => T): Attachment;
-
+ /**
+ * Converts an [action](https://svelte.dev/docs/svelte/use) into an [attachment](https://svelte.dev/docs/svelte/@attach) keeping the same behavior.
+ * It's useful if you want to start using attachments on components but you have actions provided by a library.
+ *
+ * Note that the second argument, if provided, must be a function that _returns_ the argument to the
+ * action function, not the argument itself.
+ *
+ * ```svelte
+ *
+ * ...
+ *
+ *
+ * bar)}>...
+ * ```
+ * */
export function fromAction(action: Action | ((element: E) => void | ActionReturn)): Attachment;
export {};