@@ -582,7 +582,7 @@ declare module 'svelte/animate' {
582
582
}
583
583
584
584
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' ;
586
586
import type { SourceMap } from 'magic-string' ;
587
587
import type { Context } from 'zimmerframe' ;
588
588
import type { Location } from 'locate-character' ;
@@ -1254,13 +1254,13 @@ declare module 'svelte/compiler' {
1254
1254
/**
1255
1255
* A map of declarators to the bindings they declare
1256
1256
* */
1257
- declarators : Map < import ( "estree" ) . VariableDeclarator | LetDirective , Binding [ ] > ;
1257
+ declarators : Map < VariableDeclarator | LetDirective , Binding [ ] > ;
1258
1258
/**
1259
1259
* A set of all the names referenced with this scope
1260
1260
* — useful for generating unique names
1261
1261
* */
1262
1262
references : Map < string , {
1263
- node : import ( "estree" ) . Identifier ;
1263
+ node : Identifier ;
1264
1264
path : SvelteNode [ ] ;
1265
1265
} [ ] > ;
1266
1266
/**
@@ -1269,25 +1269,25 @@ declare module 'svelte/compiler' {
1269
1269
*/
1270
1270
function_depth : number ;
1271
1271
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 ;
1273
1273
child ( porous ?: boolean ) : Scope ;
1274
1274
1275
1275
generate ( preferred_name : string ) : string ;
1276
1276
1277
1277
get ( name : string ) : Binding | null ;
1278
1278
1279
- get_bindings ( node : import ( "estree" ) . VariableDeclarator | LetDirective ) : Binding [ ] ;
1279
+ get_bindings ( node : VariableDeclarator | LetDirective ) : Binding [ ] ;
1280
1280
1281
1281
owner ( name : string ) : Scope | null ;
1282
1282
1283
- reference ( node : import ( "estree" ) . Identifier , path : SvelteNode [ ] ) : void ;
1283
+ reference ( node : Identifier , path : SvelteNode [ ] ) : void ;
1284
1284
#private;
1285
1285
}
1286
1286
class ScopeRoot {
1287
1287
1288
1288
conflicts : Set < string > ;
1289
1289
1290
- unique ( preferred_name : string ) : import ( "estree" ) . Identifier ;
1290
+ unique ( preferred_name : string ) : Identifier ;
1291
1291
}
1292
1292
namespace Css {
1293
1293
export interface BaseNode {
0 commit comments