File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 5
5
* Throw a parser error for ` class: ` directives with an empty class name ([ #5858 ] ( https://github.com/sveltejs/svelte/issues/5858 ) )
6
6
* Fix type inference for derived stores ([ #5935 ] ( https://github.com/sveltejs/svelte/pull/5935 ) )
7
7
* Make parameters of built-in animations and transitions optional ([ #5936 ] ( https://github.com/sveltejs/svelte/pull/5936 ) )
8
+ * Make ` SvelteComponentDev ` typings more forgiving ([ #5937 ] ( https://github.com/sveltejs/svelte/pull/5937 ) )
8
9
9
10
## 3.32.0
10
11
Original file line number Diff line number Diff line change @@ -115,6 +115,20 @@ export class SvelteComponentDev extends SvelteComponent {
115
115
* ### DO NOT USE!
116
116
*/
117
117
$$prop_def : Props ;
118
+ /**
119
+ * @private
120
+ * For type checking capabilities only.
121
+ * Does not exist at runtime.
122
+ * ### DO NOT USE!
123
+ */
124
+ $$events_def : any ;
125
+ /**
126
+ * @private
127
+ * For type checking capabilities only.
128
+ * Does not exist at runtime.
129
+ * ### DO NOT USE!
130
+ */
131
+ $$slot_def : any ;
118
132
119
133
constructor ( options : {
120
134
target : Element ;
You can’t perform that action at this time.
0 commit comments