File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ The generated definition extends the official `SvelteComponentTyped` interface e
41
41
import type { SvelteComponentTyped } from " svelte" ;
42
42
import type { SvelteHTMLElements } from " svelte/elements" ;
43
43
44
- type RestProps = SvelteHTMLElements [" button" ];
44
+ type $ RestProps = SvelteHTMLElements [" button" ];
45
45
46
46
type $Props = {
47
47
/**
@@ -57,7 +57,7 @@ type $Props = {
57
57
[key : ` data-${string } ` ]: any ;
58
58
};
59
59
60
- export type ButtonProps = Omit <RestProps , keyof $Props > & $Props ;
60
+ export type ButtonProps = Omit <$ RestProps , keyof $Props > & $Props ;
61
61
62
62
export default class Button extends SvelteComponentTyped <
63
63
ButtonProps ,
@@ -85,7 +85,7 @@ The accompanying JSDoc annotations would generate the following:
85
85
``` ts
86
86
import type { SvelteHTMLElements } from " svelte/elements" ;
87
87
88
- type RestProps = SvelteHTMLElements [" button" ];
88
+ type $ RestProps = SvelteHTMLElements [" button" ];
89
89
90
90
type $Props = {
91
91
/**
@@ -100,7 +100,7 @@ type $Props = {
100
100
primary? : boolean ;
101
101
};
102
102
103
- export type ButtonProps = Omit <RestProps , keyof $Props > & $Props ;
103
+ export type ButtonProps = Omit <$ RestProps , keyof $Props > & $Props ;
104
104
105
105
export default class Button extends SvelteComponentTyped <
106
106
ButtonProps ,
You can’t perform that action at this time.
0 commit comments