chore: add `@since` tag to fragments option (#15990)

pull/15997/head
Rich Harris 4 months ago committed by GitHub
parent 6928aaca06
commit 4c21f66f27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -129,6 +129,7 @@ export interface CompileOptions extends ModuleCompileOptions {
* - `tree` creates the fragment one element at a time and _then_ clones it. This is slower, but works everywhere
*
* @default 'html'
* @since 5.33
*/
fragments?: 'html' | 'tree';
/**

@ -992,6 +992,7 @@ declare module 'svelte/compiler' {
* - `tree` creates the fragment one element at a time and _then_ clones it. This is slower, but works everywhere
*
* @default 'html'
* @since 5.33
*/
fragments?: 'html' | 'tree';
/**
@ -2888,6 +2889,7 @@ declare module 'svelte/types/compiler/interfaces' {
* - `tree` creates the fragment one element at a time and _then_ clones it. This is slower, but works everywhere
*
* @default 'html'
* @since 5.33
*/
fragments?: 'html' | 'tree';
/**

Loading…
Cancel
Save