From be356640098c9efe7e63db07ec10b26939cae330 Mon Sep 17 00:00:00 2001 From: Spencer Ahrens Date: Wed, 25 Mar 2020 21:47:03 -0700 Subject: [PATCH] Flow type infoLog Summary: Changelog: [General][Internal] flow type infoLog Reviewed By: zackargyle Differential Revision: D20577939 fbshipit-source-id: eed4401b2ae0a6bf845fdcb54c6abe1fe98fe7c1 --- Libraries/Utilities/infoLog.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Libraries/Utilities/infoLog.js b/Libraries/Utilities/infoLog.js index fd90c86b970..6cac4bd149b 100644 --- a/Libraries/Utilities/infoLog.js +++ b/Libraries/Utilities/infoLog.js @@ -5,6 +5,7 @@ * LICENSE file in the root directory of this source tree. * * @format + * @flow strict */ 'use strict'; @@ -12,7 +13,7 @@ /** * Intentional info-level logging for clear separation from ad-hoc console debug logging. */ -function infoLog(...args) { +function infoLog(...args: Array): void { return console.log(...args); }