diff --git a/packages/svelte/types/index.d.ts b/packages/svelte/types/index.d.ts index 895bcb064e..56cc650abf 100644 --- a/packages/svelte/types/index.d.ts +++ b/packages/svelte/types/index.d.ts @@ -1239,9 +1239,9 @@ declare module 'svelte/compiler' { | LegacyCssNode | Text; class Scope { - + constructor(root: ScopeRoot, parent: Scope | null, porous: boolean); - + root: ScopeRoot; /** * The immediate parent scope @@ -1269,25 +1269,25 @@ declare module 'svelte/compiler' { * which is usually an error. Block statements do not increase this value */ function_depth: number; - + declare(node: Identifier, kind: Binding["kind"], declaration_kind: DeclarationKind, initial?: null | Expression | FunctionDeclaration | ClassDeclaration | ImportDeclaration | EachBlock): Binding; child(porous?: boolean): Scope; - + generate(preferred_name: string): string; - + get(name: string): Binding | null; - + get_bindings(node: VariableDeclarator | LetDirective): Binding[]; - + owner(name: string): Scope | null; - + reference(node: Identifier, path: SvelteNode[]): void; #private; } class ScopeRoot { - + conflicts: Set; - + unique(preferred_name: string): Identifier; } namespace Css { @@ -2188,21 +2188,21 @@ declare module 'svelte/reactivity' { /** @deprecated Use `SvelteURLSearchParams` instead */ function URLSearchParams_1(): void; export class SvelteDate extends Date { - + constructor(...params: any[]); #private; } export class SvelteSet extends Set { - + constructor(value?: Iterable | null | undefined); - + add(value: T): this; #private; } export class SvelteMap extends Map { - + constructor(value?: Iterable | null | undefined); - + set(key: K, value: V): this; #private; } @@ -2212,7 +2212,7 @@ declare module 'svelte/reactivity' { } const REPLACE: unique symbol; export class SvelteURLSearchParams extends URLSearchParams { - + [REPLACE](params: URLSearchParams): void; #private; } @@ -3212,4 +3212,4 @@ declare function $inspect( */ declare function $host(): El; -//# sourceMappingURL=index.d.ts.map +//# sourceMappingURL=index.d.ts.map \ No newline at end of file