diff options
Diffstat (limited to 'cli/tsc/dts/lib.es2015.collection.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.es2015.collection.d.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/tsc/dts/lib.es2015.collection.d.ts b/cli/tsc/dts/lib.es2015.collection.d.ts index f94c48543..abeb66b92 100644 --- a/cli/tsc/dts/lib.es2015.collection.d.ts +++ b/cli/tsc/dts/lib.es2015.collection.d.ts @@ -17,7 +17,6 @@ and limitations under the License. /// <reference no-default-lib="true"/> interface Map<K, V> { - clear(): void; /** * @returns true if an element in the Map existed and has been removed, or false if the element does not exist. @@ -47,7 +46,7 @@ interface Map<K, V> { } interface MapConstructor { - new(): Map<any, any>; + new (): Map<any, any>; new <K, V>(entries?: readonly (readonly [K, V])[] | null): Map<K, V>; readonly prototype: Map<any, any>; } |