Flow type infoLog

Summary:
Changelog:
[General][Internal] flow type infoLog

Reviewed By: zackargyle

Differential Revision: D20577939

fbshipit-source-id: eed4401b2ae0a6bf845fdcb54c6abe1fe98fe7c1
This commit is contained in:
Spencer Ahrens
2020-03-25 21:50:12 -07:00
committed by Facebook GitHub Bot
parent 72ac2125bc
commit be35664009
+2 -1
View File
@@ -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<mixed>): void {
return console.log(...args);
}