@@ -13,7 +13,6 @@ declare module 'svelte' {
1313 props ?: Props ;
1414 context ?: Map < any , any > ;
1515 hydrate ?: boolean ;
16- idPrefix ?: string ;
1716 intro ?: boolean ;
1817 recover ?: boolean ;
1918 sync ?: boolean ;
@@ -335,10 +334,6 @@ declare module 'svelte' {
335334 * @default true
336335 */
337336 intro ?: boolean ;
338- /**
339- * Provide a prefix for the generated ID from `$props.id`
340- */
341- idPrefix ?: string ;
342337 } & ( { } extends Props
343338 ? {
344339 /**
@@ -490,15 +485,13 @@ declare module 'svelte' {
490485 context ?: Map < any , any > ;
491486 intro ?: boolean ;
492487 recover ?: boolean ;
493- idPrefix ?: string ;
494488 } : {
495489 target : Document | Element | ShadowRoot ;
496490 props : Props ;
497491 events ?: Record < string , ( e : any ) => any > ;
498492 context ?: Map < any , any > ;
499493 intro ?: boolean ;
500494 recover ?: boolean ;
501- idPrefix ?: string ;
502495 } ) : Exports ;
503496 /**
504497 * Unmounts a component that was previously mounted using `mount` or `hydrate`.
@@ -1882,10 +1875,10 @@ declare module 'svelte/motion' {
18821875 * const tween = Tween.of(() => number);
18831876 * </script>
18841877 * ```
1885- *
1878+ *
18861879 */
18871880 static of < U > ( fn : ( ) => U , options ?: TweenedOptions < U > | undefined ) : Tween < U > ;
1888-
1881+
18891882 constructor ( value : T , options ?: TweenedOptions < T > ) ;
18901883 /**
18911884 * Sets `tween.target` to `value` and returns a `Promise` that resolves if and when `tween.current` catches up to it.
@@ -1904,21 +1897,21 @@ declare module 'svelte/motion' {
19041897
19051898declare module 'svelte/reactivity' {
19061899 export class SvelteDate extends Date {
1907-
1900+
19081901 constructor ( ...params : any [ ] ) ;
19091902 #private;
19101903 }
19111904 export class SvelteSet < T > extends Set < T > {
1912-
1905+
19131906 constructor ( value ?: Iterable < T > | null | undefined ) ;
1914-
1907+
19151908 add ( value : T ) : this;
19161909 #private;
19171910 }
19181911 export class SvelteMap < K , V > extends Map < K , V > {
1919-
1912+
19201913 constructor ( value ?: Iterable < readonly [ K , V ] > | null | undefined ) ;
1921-
1914+
19221915 set ( key : K , value : V ) : this;
19231916 #private;
19241917 }
@@ -1928,7 +1921,7 @@ declare module 'svelte/reactivity' {
19281921 }
19291922 const REPLACE : unique symbol ;
19301923 export class SvelteURLSearchParams extends URLSearchParams {
1931-
1924+
19321925 [ REPLACE ] ( params : URLSearchParams ) : void ;
19331926 #private;
19341927 }
@@ -2000,7 +1993,7 @@ declare module 'svelte/reactivity' {
20001993 */
20011994 export function createSubscriber ( start : ( update : ( ) => void ) => ( ( ) => void ) | void ) : ( ) => void ;
20021995 class ReactiveValue < T > {
2003-
1996+
20041997 constructor ( fn : ( ) => T , onsubscribe : ( update : ( ) => void ) => void ) ;
20051998 get current ( ) : T ;
20061999 #private;
@@ -2065,7 +2058,7 @@ declare module 'svelte/reactivity/window' {
20652058 get current ( ) : number | undefined ;
20662059 } ;
20672060 class ReactiveValue < T > {
2068-
2061+
20692062 constructor ( fn : ( ) => T , onsubscribe : ( update : ( ) => void ) => void ) ;
20702063 get current ( ) : T ;
20712064 #private;
0 commit comments