File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ await createBundle({
27
27
[ `${ pkg . name } /animate` ] : `${ dir } /src/animate/public.d.ts` ,
28
28
[ `${ pkg . name } /compiler` ] : `${ dir } /src/compiler/index.js` ,
29
29
[ `${ pkg . name } /easing` ] : `${ dir } /src/easing/index.js` ,
30
- [ `${ pkg . name } /legacy` ] : `${ dir } /src/legacy/public.d.ts ` ,
30
+ [ `${ pkg . name } /legacy` ] : `${ dir } /src/legacy/legacy-client.js ` ,
31
31
[ `${ pkg . name } /motion` ] : `${ dir } /src/motion/public.d.ts` ,
32
32
[ `${ pkg . name } /server` ] : `${ dir } /src/server/index.js` ,
33
33
[ `${ pkg . name } /store` ] : `${ dir } /src/store/public.d.ts` ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
// This should contain all the public interfaces (not all of them are actually importable, check current Svelte for which ones are).
2
2
3
3
/**
4
- * @deprecated Use `Component` instead. See TODO for more information.
4
+ * @deprecated Svelte components were classes in Svelte 4. In Svelte 5, thy are not anymore.
5
+ * Use `mount` or `createRoot` instead to instantiate components.
6
+ * See [breaking changes](https://svelte-5-preview.vercel.app/docs/breaking-changes#components-are-no-longer-classes)
7
+ * for more info.
5
8
*/
6
9
export interface ComponentConstructorOptions <
7
10
Props extends Record < string , any > = Record < string , any >
You can’t perform that action at this time.
0 commit comments