mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-06 02:33:53 -06:00
indenting
This commit is contained in:
parent
e2ee3c5c15
commit
a9d4b3016a
17
src/lib/es2015.collection.d.ts
vendored
17
src/lib/es2015.collection.d.ts
vendored
@ -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> {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user