indenting

This commit is contained in:
Gabe Moothart 2016-09-15 10:47:19 -07:00
parent e2ee3c5c15
commit a9d4b3016a

View File

@ -16,12 +16,10 @@ interface MapConstructor {
declare var Map: MapConstructor;
interface ReadonlyMap<K, V> {
forEach(
callbackfn: (value: V, key: K, map: ReadonlyMap<K, V>) => void,
thisArg?: any): void;
get(key: K): V|undefined;
has(key: K): boolean;
readonly size: number;
forEach(callbackfn: (value: V, key: K, map: ReadonlyMap<K, V>) => void, thisArg?: any): void;
get(key: K): V|undefined;
has(key: K): boolean;
readonly size: number;
}
interface WeakMap<K, V> {
@ -55,10 +53,9 @@ interface SetConstructor {
declare var Set: SetConstructor;
interface ReadonlySet<T> {
forEach(callbackfn: (value: T, value2: T, set: ReadonlySet<T>) => void, thisArg?: any):
void;
has(value: T): boolean;
readonly size: number;
forEach(callbackfn: (value: T, value2: T, set: ReadonlySet<T>) => void, thisArg?: any): void;
has(value: T): boolean;
readonly size: number;
}
interface WeakSet<T> {