Skip to content

Commit e3ae46e

Browse files
committed
found a prettier bug :) this one formats twice until its end state
1 parent df994c4 commit e3ae46e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/svelte/src/main/public.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,7 @@ declare const SnippetReturn: unique symbol;
195195
* You can only call a snippet through the `{@render ...}` tag.
196196
*/
197197
export interface Snippet<T = void> {
198-
(
199-
arg: T
200-
): typeof SnippetReturn & {
198+
(arg: T): typeof SnippetReturn & {
201199
_: 'functions passed to {@render ...} tags must use the `Snippet` type imported from "svelte"';
202200
};
203201
}

0 commit comments

Comments
 (0)