From e8f674fafbf513164054cbddf23274129a7f9526 Mon Sep 17 00:00:00 2001 From: Homa Wong Date: Tue, 18 Jul 2017 00:58:05 -0700 Subject: [PATCH] Update es5.d.ts --- src/lib/es5.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/es5.d.ts b/src/lib/es5.d.ts index 48a97fa665853..d42b9140a8f1e 100644 --- a/src/lib/es5.d.ts +++ b/src/lib/es5.d.ts @@ -216,7 +216,7 @@ interface ObjectConstructor { * Returns the names of the enumerable properties and methods of an object. * @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. */ - keys(o: any): string[]; + keys(o: {}): string[]; } /**