Skip to content

Commit f56e1a1

Browse files
committed
Fix format issue
1 parent a9eed9d commit f56e1a1

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

packages/svelte/types/index.d.ts

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1051,15 +1051,15 @@ declare module 'svelte/compiler' {
10511051
filename?: string | undefined;
10521052
} | undefined): Promise<Processed>;
10531053
export class CompileError extends Error {
1054-
1054+
10551055
constructor(code: string, message: string, position: [number, number] | undefined);
1056-
1056+
10571057
filename: CompileError_1['filename'];
1058-
1058+
10591059
position: CompileError_1['position'];
1060-
1060+
10611061
start: CompileError_1['start'];
1062-
1062+
10631063
end: CompileError_1['end'];
10641064
code: string;
10651065
}
@@ -1078,9 +1078,9 @@ declare module 'svelte/compiler' {
10781078
code: string;
10791079
};
10801080
class Scope {
1081-
1081+
10821082
constructor(root: ScopeRoot, parent: Scope | null, porous: boolean);
1083-
1083+
10841084
root: ScopeRoot;
10851085
/**
10861086
* The immediate parent scope
@@ -1108,25 +1108,25 @@ declare module 'svelte/compiler' {
11081108
* which is usually an error. Block statements do not increase this value
11091109
*/
11101110
function_depth: number;
1111-
1111+
11121112
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;
11131113
child(porous?: boolean): Scope;
1114-
1114+
11151115
generate(preferred_name: string): string;
1116-
1116+
11171117
get(name: string): Binding | null;
1118-
1118+
11191119
get_bindings(node: import('estree').VariableDeclarator | LetDirective): Binding[];
1120-
1120+
11211121
owner(name: string): Scope | null;
1122-
1122+
11231123
reference(node: import('estree').Identifier, path: SvelteNode[]): void;
11241124
#private;
11251125
}
11261126
class ScopeRoot {
1127-
1127+
11281128
conflicts: Set<string>;
1129-
1129+
11301130
unique(preferred_name: string): import("estree").Identifier;
11311131
}
11321132
namespace Css {
@@ -2032,21 +2032,21 @@ declare module 'svelte/motion' {
20322032

20332033
declare module 'svelte/reactivity' {
20342034
class ReactiveDate extends Date {
2035-
2035+
20362036
constructor(...values: any[]);
20372037
#private;
20382038
}
20392039
class ReactiveSet<T> extends Set<T> {
2040-
2040+
20412041
constructor(value?: Iterable<T> | null | undefined);
2042-
2042+
20432043
add(value: T): this;
20442044
#private;
20452045
}
20462046
class ReactiveMap<K, V> extends Map<K, V> {
2047-
2047+
20482048
constructor(value?: Iterable<readonly [K, V]> | null | undefined);
2049-
2049+
20502050
set(key: K, value: V): this;
20512051
#private;
20522052
}
@@ -2055,7 +2055,7 @@ declare module 'svelte/reactivity' {
20552055
#private;
20562056
}
20572057
class ReactiveURLSearchParams extends URLSearchParams {
2058-
2058+
20592059
[REPLACE](params: URLSearchParams): void;
20602060
#private;
20612061
}
@@ -2877,4 +2877,4 @@ declare function $inspect<T extends any[]>(
28772877
*/
28782878
declare function $host<El extends HTMLElement = HTMLElement>(): El;
28792879

2880-
//# sourceMappingURL=index.d.ts.map
2880+
//# sourceMappingURL=index.d.ts.map

0 commit comments

Comments
 (0)