From 06c99549ab03d0a60ae36f2f3ff4bc27daa04b0a Mon Sep 17 00:00:00 2001 From: Andrew Fong Date: Sun, 21 Aug 2016 23:55:58 -0700 Subject: [PATCH] Fix noImplicitAny error This allows this type definition to be used with the --noImplicitAny flag. --- firebase.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firebase.d.ts b/firebase.d.ts index c5e3a81..8e44ac6 100644 --- a/firebase.d.ts +++ b/firebase.d.ts @@ -11,7 +11,7 @@ declare namespace firebase { TIMESTAMP, } - export function enableLogging(enable: boolean); + export function enableLogging(enable: boolean): void; }