Skip to content

Commit 7d48a8f

Browse files
committed
regenerate types
1 parent b9bfb93 commit 7d48a8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/svelte/src/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export class SvelteComponent<
113113
* you export a component called `MyComponent`. For Svelte+TypeScript users,
114114
* you want to provide typings. Therefore you create a `index.d.ts`:
115115
* ```ts
116-
* import type { Component } from "svelte";
116+
* import type { Component } from 'svelte';
117117
* export declare const MyComponent: Component<{ foo: string }> {}
118118
* ```
119119
* Typing this makes it possible for IDEs like VS Code with the Svelte extension

packages/svelte/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ declare module 'svelte' {
110110
* you export a component called `MyComponent`. For Svelte+TypeScript users,
111111
* you want to provide typings. Therefore you create a `index.d.ts`:
112112
* ```ts
113-
* import type { Component } from "svelte";
113+
* import type { Component } from 'svelte';
114114
* export declare const MyComponent: Component<{ foo: string }> {}
115115
* ```
116116
* Typing this makes it possible for IDEs like VS Code with the Svelte extension
@@ -2962,4 +2962,4 @@ declare function $inspect<T extends any[]>(
29622962
*/
29632963
declare function $host<El extends HTMLElement = HTMLElement>(): El;
29642964

2965-
//# sourceMappingURL=index.d.ts.map
2965+
//# sourceMappingURL=index.d.ts.map

0 commit comments

Comments
 (0)