Skip to content

Commit 968b685

Browse files
committed
regenerate types
1 parent 3254cfd commit 968b685

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/svelte/types/index.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ declare module 'svelte/animate' {
582582
}
583583

584584
declare module 'svelte/compiler' {
585-
import type { AssignmentExpression, ClassDeclaration, Expression, FunctionDeclaration, Identifier, ImportDeclaration, ArrayExpression, MemberExpression, ObjectExpression, Pattern, ArrowFunctionExpression, VariableDeclaration, VariableDeclarator, FunctionExpression, Node, Program, ChainExpression, SimpleCallExpression } from 'estree';
585+
import type { AssignmentExpression, ClassDeclaration, Expression, FunctionDeclaration, Identifier, ImportDeclaration, ArrayExpression, MemberExpression, ObjectExpression, Pattern, Node, VariableDeclarator, ArrowFunctionExpression, VariableDeclaration, FunctionExpression, Program, ChainExpression, SimpleCallExpression } from 'estree';
586586
import type { SourceMap } from 'magic-string';
587587
import type { Context } from 'zimmerframe';
588588
import type { Location } from 'locate-character';
@@ -1254,13 +1254,13 @@ declare module 'svelte/compiler' {
12541254
/**
12551255
* A map of declarators to the bindings they declare
12561256
* */
1257-
declarators: Map<import("estree").VariableDeclarator | LetDirective, Binding[]>;
1257+
declarators: Map<VariableDeclarator | LetDirective, Binding[]>;
12581258
/**
12591259
* A set of all the names referenced with this scope
12601260
* — useful for generating unique names
12611261
* */
12621262
references: Map<string, {
1263-
node: import("estree").Identifier;
1263+
node: Identifier;
12641264
path: SvelteNode[];
12651265
}[]>;
12661266
/**
@@ -1269,25 +1269,25 @@ declare module 'svelte/compiler' {
12691269
*/
12701270
function_depth: number;
12711271

1272-
declare(node: import("estree").Identifier, kind: Binding["kind"], declaration_kind: DeclarationKind, initial?: null | import("estree").Expression | import("estree").FunctionDeclaration | import("estree").ClassDeclaration | import("estree").ImportDeclaration | EachBlock): Binding;
1272+
declare(node: Identifier, kind: Binding["kind"], declaration_kind: DeclarationKind, initial?: null | Expression | FunctionDeclaration | ClassDeclaration | ImportDeclaration | EachBlock): Binding;
12731273
child(porous?: boolean): Scope;
12741274

12751275
generate(preferred_name: string): string;
12761276

12771277
get(name: string): Binding | null;
12781278

1279-
get_bindings(node: import("estree").VariableDeclarator | LetDirective): Binding[];
1279+
get_bindings(node: VariableDeclarator | LetDirective): Binding[];
12801280

12811281
owner(name: string): Scope | null;
12821282

1283-
reference(node: import("estree").Identifier, path: SvelteNode[]): void;
1283+
reference(node: Identifier, path: SvelteNode[]): void;
12841284
#private;
12851285
}
12861286
class ScopeRoot {
12871287

12881288
conflicts: Set<string>;
12891289

1290-
unique(preferred_name: string): import("estree").Identifier;
1290+
unique(preferred_name: string): Identifier;
12911291
}
12921292
namespace Css {
12931293
export interface BaseNode {

0 commit comments

Comments
 (0)