Skip to content

Commit a87f85c

Browse files
committed
lint
1 parent 2f33b0a commit a87f85c

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

packages/svelte/types/index.d.ts

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,15 +1009,15 @@ declare module 'svelte/compiler' {
10091009
filename?: string | undefined;
10101010
} | undefined): Promise<Processed>;
10111011
export class CompileError extends Error {
1012-
1012+
10131013
constructor(code: string, message: string, position: [number, number] | undefined);
1014-
1014+
10151015
filename: CompileError_1['filename'];
1016-
1016+
10171017
position: CompileError_1['position'];
1018-
1018+
10191019
start: CompileError_1['start'];
1020-
1020+
10211021
end: CompileError_1['end'];
10221022
code: string;
10231023
}
@@ -1028,9 +1028,9 @@ declare module 'svelte/compiler' {
10281028
* */
10291029
export const VERSION: string;
10301030
class Scope {
1031-
1031+
10321032
constructor(root: ScopeRoot, parent: Scope | null, porous: boolean);
1033-
1033+
10341034
root: ScopeRoot;
10351035
/**
10361036
* The immediate parent scope
@@ -1058,25 +1058,25 @@ declare module 'svelte/compiler' {
10581058
* which is usually an error. Block statements do not increase this value
10591059
*/
10601060
function_depth: number;
1061-
1061+
10621062
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;
10631063
child(porous?: boolean): Scope;
1064-
1064+
10651065
generate(preferred_name: string): string;
1066-
1066+
10671067
get(name: string): Binding | null;
1068-
1068+
10691069
get_bindings(node: import('estree').VariableDeclarator | LetDirective): Binding[];
1070-
1070+
10711071
owner(name: string): Scope | null;
1072-
1072+
10731073
reference(node: import('estree').Identifier, path: SvelteNode[]): void;
10741074
#private;
10751075
}
10761076
class ScopeRoot {
1077-
1077+
10781078
conflicts: Set<string>;
1079-
1079+
10801080
unique(preferred_name: string): import("estree").Identifier;
10811081
}
10821082
namespace Css {
@@ -1966,18 +1966,18 @@ declare module 'svelte/motion' {
19661966

19671967
declare module 'svelte/reactivity' {
19681968
export class Date extends Date {
1969-
1969+
19701970
constructor(...values: any[]);
19711971
#private;
19721972
}
19731973
export class Set<T> extends Set<any> {
1974-
1974+
19751975
constructor(value?: Iterable<T> | null | undefined);
1976-
1976+
19771977
has(value: T): boolean;
1978-
1978+
19791979
add(value: T): this;
1980-
1980+
19811981
delete(value: T): boolean;
19821982
keys(): IterableIterator<T>;
19831983
values(): IterableIterator<T>;
@@ -1986,17 +1986,17 @@ declare module 'svelte/reactivity' {
19861986
#private;
19871987
}
19881988
export class Map<K, V> extends Map<any, any> {
1989-
1989+
19901990
constructor(value?: Iterable<readonly [K, V]> | null | undefined);
1991-
1991+
19921992
has(key: K): boolean;
1993-
1993+
19941994
forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, this_arg?: any): void;
1995-
1995+
19961996
get(key: K): V | undefined;
1997-
1997+
19981998
set(key: K, value: V): this;
1999-
1999+
20002000
delete(key: K): boolean;
20012001
keys(): IterableIterator<K>;
20022002
values(): IterableIterator<V>;
@@ -2726,4 +2726,4 @@ declare function $inspect<T extends any[]>(
27262726
*/
27272727
declare function $host<El extends HTMLElement = HTMLElement>(): El;
27282728

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

0 commit comments

Comments
 (0)