From d339d0d0598a6afc3fb72496482d490809e436c3 Mon Sep 17 00:00:00 2001 From: Hristo Deshev Date: Thu, 11 Jun 2015 16:11:43 +0300 Subject: [PATCH] Fix tslint errors --- es-collections.d.ts | 3 +++ es6-promise.d.ts | 1 + 2 files changed, 4 insertions(+) diff --git a/es-collections.d.ts b/es-collections.d.ts index ab3315843..ee8196f66 100644 --- a/es-collections.d.ts +++ b/es-collections.d.ts @@ -1,7 +1,10 @@ +/* tslint:disable */ ///////////////////////////// /// IE11 ECMAScript Extensions ///////////////////////////// +interface List extends Array {} + interface Map { clear(): void; delete(key: K): boolean; diff --git a/es6-promise.d.ts b/es6-promise.d.ts index cc43a5789..b8f93387b 100644 --- a/es6-promise.d.ts +++ b/es6-promise.d.ts @@ -1,3 +1,4 @@ +/* tslint:disable */ // Type definitions for es6-promise // Project: https://github.com/jakearchibald/ES6-Promise // Definitions by: François de Campredon