@@ -528,7 +528,8 @@ declare module 'svelte' {
528528 /**
529529 * Returns a promise that resolves once any state changes, and asynchronous work resulting from them,
530530 * have resolved and the DOM has been updated
531- * */
531+ * @since 5.36
532+ */
532533 export function settled ( ) : Promise < void > ;
533534 /**
534535 * When used inside a [`$derived`](https://svelte.dev/docs/svelte/$derived) or [`$effect`](https://svelte.dev/docs/svelte/$effect),
@@ -1116,9 +1117,15 @@ declare module 'svelte/compiler' {
11161117 * Use this to filter out warnings. Return `true` to keep the warning, `false` to discard it.
11171118 */
11181119 warningFilter ?: ( warning : Warning ) => boolean ;
1119- /** Experimental options */
1120+ /**
1121+ * Experimental options
1122+ * @since 5.36
1123+ */
11201124 experimental ?: {
1121- /** Allow `await` keyword in deriveds, template expressions, and the top level of components */
1125+ /**
1126+ * Allow `await` keyword in deriveds, template expressions, and the top level of components
1127+ * @since 5.36
1128+ */
11221129 async ?: boolean ;
11231130 } ;
11241131 }
@@ -3031,9 +3038,15 @@ declare module 'svelte/types/compiler/interfaces' {
30313038 * Use this to filter out warnings. Return `true` to keep the warning, `false` to discard it.
30323039 */
30333040 warningFilter ?: ( warning : Warning_1 ) => boolean ;
3034- /** Experimental options */
3041+ /**
3042+ * Experimental options
3043+ * @since 5.36
3044+ */
30353045 experimental ?: {
3036- /** Allow `await` keyword in deriveds, template expressions, and the top level of components */
3046+ /**
3047+ * Allow `await` keyword in deriveds, template expressions, and the top level of components
3048+ * @since 5.36
3049+ */
30373050 async ?: boolean ;
30383051 } ;
30393052 }
0 commit comments