Skip to content

Commit 4c21f66

Browse files
authored
chore: add @since tag to fragments option (#15990)
1 parent 6928aac commit 4c21f66

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/svelte/src/compiler/types/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ export interface CompileOptions extends ModuleCompileOptions {
129129
* - `tree` creates the fragment one element at a time and _then_ clones it. This is slower, but works everywhere
130130
*
131131
* @default 'html'
132+
* @since 5.33
132133
*/
133134
fragments?: 'html' | 'tree';
134135
/**

packages/svelte/types/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -992,6 +992,7 @@ declare module 'svelte/compiler' {
992992
* - `tree` creates the fragment one element at a time and _then_ clones it. This is slower, but works everywhere
993993
*
994994
* @default 'html'
995+
* @since 5.33
995996
*/
996997
fragments?: 'html' | 'tree';
997998
/**
@@ -2888,6 +2889,7 @@ declare module 'svelte/types/compiler/interfaces' {
28882889
* - `tree` creates the fragment one element at a time and _then_ clones it. This is slower, but works everywhere
28892890
*
28902891
* @default 'html'
2892+
* @since 5.33
28912893
*/
28922894
fragments?: 'html' | 'tree';
28932895
/**

0 commit comments

Comments
 (0)