Skip to content

Commit 14dab44

Browse files
committed
docs: update README
1 parent 48cb5d2 commit 14dab44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The generated definition extends the official `SvelteComponentTyped` interface e
4141
import type { SvelteComponentTyped } from "svelte";
4242
import type { SvelteHTMLElements } from "svelte/elements";
4343

44-
type RestProps = SvelteHTMLElements["button"];
44+
type $RestProps = SvelteHTMLElements["button"];
4545

4646
type $Props = {
4747
/**
@@ -57,7 +57,7 @@ type $Props = {
5757
[key: `data-${string}`]: any;
5858
};
5959

60-
export type ButtonProps = Omit<RestProps, keyof $Props> & $Props;
60+
export type ButtonProps = Omit<$RestProps, keyof $Props> & $Props;
6161

6262
export default class Button extends SvelteComponentTyped<
6363
ButtonProps,
@@ -85,7 +85,7 @@ The accompanying JSDoc annotations would generate the following:
8585
```ts
8686
import type { SvelteHTMLElements } from "svelte/elements";
8787

88-
type RestProps = SvelteHTMLElements["button"];
88+
type $RestProps = SvelteHTMLElements["button"];
8989

9090
type $Props = {
9191
/**
@@ -100,7 +100,7 @@ type $Props = {
100100
primary?: boolean;
101101
};
102102

103-
export type ButtonProps = Omit<RestProps, keyof $Props> & $Props;
103+
export type ButtonProps = Omit<$RestProps, keyof $Props> & $Props;
104104

105105
export default class Button extends SvelteComponentTyped<
106106
ButtonProps,

0 commit comments

Comments
 (0)