@@ -1009,15 +1009,15 @@ declare module 'svelte/compiler' {
1009
1009
filename ?: string | undefined ;
1010
1010
} | undefined ) : Promise < Processed > ;
1011
1011
export class CompileError extends Error {
1012
-
1012
+
1013
1013
constructor ( code : string , message : string , position : [ number , number ] | undefined ) ;
1014
-
1014
+
1015
1015
filename : CompileError_1 [ 'filename' ] ;
1016
-
1016
+
1017
1017
position : CompileError_1 [ 'position' ] ;
1018
-
1018
+
1019
1019
start : CompileError_1 [ 'start' ] ;
1020
-
1020
+
1021
1021
end : CompileError_1 [ 'end' ] ;
1022
1022
code : string ;
1023
1023
}
@@ -1028,9 +1028,9 @@ declare module 'svelte/compiler' {
1028
1028
* */
1029
1029
export const VERSION : string ;
1030
1030
class Scope {
1031
-
1031
+
1032
1032
constructor ( root : ScopeRoot , parent : Scope | null , porous : boolean ) ;
1033
-
1033
+
1034
1034
root : ScopeRoot ;
1035
1035
/**
1036
1036
* The immediate parent scope
@@ -1058,25 +1058,25 @@ declare module 'svelte/compiler' {
1058
1058
* which is usually an error. Block statements do not increase this value
1059
1059
*/
1060
1060
function_depth : number ;
1061
-
1061
+
1062
1062
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 ;
1063
1063
child ( porous ?: boolean ) : Scope ;
1064
-
1064
+
1065
1065
generate ( preferred_name : string ) : string ;
1066
-
1066
+
1067
1067
get ( name : string ) : Binding | null ;
1068
-
1068
+
1069
1069
get_bindings ( node : import ( 'estree' ) . VariableDeclarator | LetDirective ) : Binding [ ] ;
1070
-
1070
+
1071
1071
owner ( name : string ) : Scope | null ;
1072
-
1072
+
1073
1073
reference ( node : import ( 'estree' ) . Identifier , path : SvelteNode [ ] ) : void ;
1074
1074
#private;
1075
1075
}
1076
1076
class ScopeRoot {
1077
-
1077
+
1078
1078
conflicts : Set < string > ;
1079
-
1079
+
1080
1080
unique ( preferred_name : string ) : import ( "estree" ) . Identifier ;
1081
1081
}
1082
1082
namespace Css {
@@ -1966,18 +1966,18 @@ declare module 'svelte/motion' {
1966
1966
1967
1967
declare module 'svelte/reactivity' {
1968
1968
export class Date extends Date {
1969
-
1969
+
1970
1970
constructor ( ...values : any [ ] ) ;
1971
1971
#private;
1972
1972
}
1973
1973
export class Set < T > extends Set < any > {
1974
-
1974
+
1975
1975
constructor ( value ?: Iterable < T > | null | undefined ) ;
1976
-
1976
+
1977
1977
has ( value : T ) : boolean ;
1978
-
1978
+
1979
1979
add ( value : T ) : this;
1980
-
1980
+
1981
1981
delete ( value : T ) : boolean ;
1982
1982
keys ( ) : IterableIterator < T > ;
1983
1983
values ( ) : IterableIterator < T > ;
@@ -1986,17 +1986,17 @@ declare module 'svelte/reactivity' {
1986
1986
#private;
1987
1987
}
1988
1988
export class Map < K , V > extends Map < any , any > {
1989
-
1989
+
1990
1990
constructor ( value ?: Iterable < readonly [ K , V ] > | null | undefined ) ;
1991
-
1991
+
1992
1992
has ( key : K ) : boolean ;
1993
-
1993
+
1994
1994
forEach ( callbackfn : ( value : V , key : K , map : Map < K , V > ) => void , this_arg ?: any ) : void ;
1995
-
1995
+
1996
1996
get ( key : K ) : V | undefined ;
1997
-
1997
+
1998
1998
set ( key : K , value : V ) : this;
1999
-
1999
+
2000
2000
delete ( key : K ) : boolean ;
2001
2001
keys ( ) : IterableIterator < K > ;
2002
2002
values ( ) : IterableIterator < V > ;
@@ -2726,4 +2726,4 @@ declare function $inspect<T extends any[]>(
2726
2726
*/
2727
2727
declare function $host < El extends HTMLElement = HTMLElement > ( ) : El ;
2728
2728
2729
- //# sourceMappingURL=index.d.ts.map
2729
+ //# sourceMappingURL=index.d.ts.map
0 commit comments