Skip to content

Commit 6134b0d

Browse files
committed
regenerate types
1 parent 536e508 commit 6134b0d

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

packages/svelte/types/index.d.ts

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -980,15 +980,15 @@ declare module 'svelte/compiler' {
980980
filename?: string | undefined;
981981
} | undefined): Promise<Processed>;
982982
export class CompileError extends Error {
983-
983+
984984
constructor(code: string, message: string, position: [number, number] | undefined);
985-
985+
986986
filename: CompileError_1['filename'];
987-
987+
988988
position: CompileError_1['position'];
989-
989+
990990
start: CompileError_1['start'];
991-
991+
992992
end: CompileError_1['end'];
993993
code: string;
994994
}
@@ -999,9 +999,9 @@ declare module 'svelte/compiler' {
999999
* */
10001000
export const VERSION: string;
10011001
class Scope {
1002-
1002+
10031003
constructor(root: ScopeRoot, parent: Scope | null, porous: boolean);
1004-
1004+
10051005
root: ScopeRoot;
10061006
/**
10071007
* A map of every identifier declared by this scope, and all the
@@ -1025,25 +1025,25 @@ declare module 'svelte/compiler' {
10251025
* which is usually an error. Block statements do not increase this value
10261026
*/
10271027
function_depth: number;
1028-
1028+
10291029
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;
10301030
child(porous?: boolean): Scope;
1031-
1031+
10321032
generate(preferred_name: string): string;
1033-
1033+
10341034
get(name: string): Binding | null;
1035-
1035+
10361036
get_bindings(node: import('estree').VariableDeclarator | LetDirective): Binding[];
1037-
1037+
10381038
owner(name: string): Scope | null;
1039-
1039+
10401040
reference(node: import('estree').Identifier, path: SvelteNode[]): void;
10411041
#private;
10421042
}
10431043
class ScopeRoot {
1044-
1044+
10451045
conflicts: Set<string>;
1046-
1046+
10471047
unique(preferred_name: string): import("estree").Identifier;
10481048
}
10491049
interface BaseNode {
@@ -2640,4 +2640,4 @@ declare function $inspect<T extends any[]>(
26402640
...values: T
26412641
): { with: (fn: (type: 'init' | 'update', ...values: T) => void) => void };
26422642

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

0 commit comments

Comments
 (0)