@@ -1051,15 +1051,15 @@ declare module 'svelte/compiler' {
1051
1051
filename ?: string | undefined ;
1052
1052
} | undefined ) : Promise < Processed > ;
1053
1053
export class CompileError extends Error {
1054
-
1054
+
1055
1055
constructor ( code : string , message : string , position : [ number , number ] | undefined ) ;
1056
-
1056
+
1057
1057
filename : CompileError_1 [ 'filename' ] ;
1058
-
1058
+
1059
1059
position : CompileError_1 [ 'position' ] ;
1060
-
1060
+
1061
1061
start : CompileError_1 [ 'start' ] ;
1062
-
1062
+
1063
1063
end : CompileError_1 [ 'end' ] ;
1064
1064
code : string ;
1065
1065
}
@@ -1078,9 +1078,9 @@ declare module 'svelte/compiler' {
1078
1078
code : string ;
1079
1079
} ;
1080
1080
class Scope {
1081
-
1081
+
1082
1082
constructor ( root : ScopeRoot , parent : Scope | null , porous : boolean ) ;
1083
-
1083
+
1084
1084
root : ScopeRoot ;
1085
1085
/**
1086
1086
* The immediate parent scope
@@ -1108,25 +1108,25 @@ declare module 'svelte/compiler' {
1108
1108
* which is usually an error. Block statements do not increase this value
1109
1109
*/
1110
1110
function_depth : number ;
1111
-
1111
+
1112
1112
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 ;
1113
1113
child ( porous ?: boolean ) : Scope ;
1114
-
1114
+
1115
1115
generate ( preferred_name : string ) : string ;
1116
-
1116
+
1117
1117
get ( name : string ) : Binding | null ;
1118
-
1118
+
1119
1119
get_bindings ( node : import ( 'estree' ) . VariableDeclarator | LetDirective ) : Binding [ ] ;
1120
-
1120
+
1121
1121
owner ( name : string ) : Scope | null ;
1122
-
1122
+
1123
1123
reference ( node : import ( 'estree' ) . Identifier , path : SvelteNode [ ] ) : void ;
1124
1124
#private;
1125
1125
}
1126
1126
class ScopeRoot {
1127
-
1127
+
1128
1128
conflicts : Set < string > ;
1129
-
1129
+
1130
1130
unique ( preferred_name : string ) : import ( "estree" ) . Identifier ;
1131
1131
}
1132
1132
namespace Css {
@@ -2032,21 +2032,21 @@ declare module 'svelte/motion' {
2032
2032
2033
2033
declare module 'svelte/reactivity' {
2034
2034
class ReactiveDate extends Date {
2035
-
2035
+
2036
2036
constructor ( ...values : any [ ] ) ;
2037
2037
#private;
2038
2038
}
2039
2039
class ReactiveSet < T > extends Set < T > {
2040
-
2040
+
2041
2041
constructor ( value ?: Iterable < T > | null | undefined ) ;
2042
-
2042
+
2043
2043
add ( value : T ) : this;
2044
2044
#private;
2045
2045
}
2046
2046
class ReactiveMap < K , V > extends Map < K , V > {
2047
-
2047
+
2048
2048
constructor ( value ?: Iterable < readonly [ K , V ] > | null | undefined ) ;
2049
-
2049
+
2050
2050
set ( key : K , value : V ) : this;
2051
2051
#private;
2052
2052
}
@@ -2055,7 +2055,7 @@ declare module 'svelte/reactivity' {
2055
2055
#private;
2056
2056
}
2057
2057
class ReactiveURLSearchParams extends URLSearchParams {
2058
-
2058
+
2059
2059
[ REPLACE ] ( params : URLSearchParams ) : void ;
2060
2060
#private;
2061
2061
}
@@ -2877,4 +2877,4 @@ declare function $inspect<T extends any[]>(
2877
2877
*/
2878
2878
declare function $host < El extends HTMLElement = HTMLElement > ( ) : El ;
2879
2879
2880
- //# sourceMappingURL=index.d.ts.map
2880
+ //# sourceMappingURL=index.d.ts.map
0 commit comments