Skip to content

Commit a9d4b30

Browse files
committed
indenting
1 parent e2ee3c5 commit a9d4b30

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

src/lib/es2015.collection.d.ts

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,10 @@ interface MapConstructor {
1616
declare var Map: MapConstructor;
1717

1818
interface ReadonlyMap<K, V> {
19-
forEach(
20-
callbackfn: (value: V, key: K, map: ReadonlyMap<K, V>) => void,
21-
thisArg?: any): void;
22-
get(key: K): V|undefined;
23-
has(key: K): boolean;
24-
readonly size: number;
19+
forEach(callbackfn: (value: V, key: K, map: ReadonlyMap<K, V>) => void, thisArg?: any): void;
20+
get(key: K): V|undefined;
21+
has(key: K): boolean;
22+
readonly size: number;
2523
}
2624

2725
interface WeakMap<K, V> {
@@ -55,10 +53,9 @@ interface SetConstructor {
5553
declare var Set: SetConstructor;
5654

5755
interface ReadonlySet<T> {
58-
forEach(callbackfn: (value: T, value2: T, set: ReadonlySet<T>) => void, thisArg?: any):
59-
void;
60-
has(value: T): boolean;
61-
readonly size: number;
56+
forEach(callbackfn: (value: T, value2: T, set: ReadonlySet<T>) => void, thisArg?: any): void;
57+
has(value: T): boolean;
58+
readonly size: number;
6259
}
6360

6461
interface WeakSet<T> {

0 commit comments

Comments
 (0)