From e7cf4380bc42fcd6defa5070501a1a71a570d274 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Tue, 13 Aug 2019 08:19:52 -0700 Subject: [PATCH] Migrate info Summary: _typescript_ Reviewed By: danielbuechele Differential Revision: D16763995 fbshipit-source-id: 635e029ea33ab645d0e4d52640fae49eb254ac1c --- src/utils/{info.js => info.tsx} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename src/utils/{info.js => info.tsx} (90%) diff --git a/src/utils/info.js b/src/utils/info.tsx similarity index 90% rename from src/utils/info.js rename to src/utils/info.tsx index de744607c..912e7684e 100644 --- a/src/utils/info.js +++ b/src/utils/info.tsx @@ -8,12 +8,12 @@ import os from 'os'; export type Info = { - arch: string, - platform: string, - unixname: string, + arch: string; + platform: string; + unixname: string; versions: { - [key: string]: ?string, - }, + [key: string]: string | undefined; + }; }; /**