Convert to TypeScript

Summary: Before looking into performance bottlenecks, I thought it wise to upgrade to TypeScript as that is where all plugins are heading

Reviewed By: jknoxville

Differential Revision: D18829689

fbshipit-source-id: 4c515f240d742f77e89f3cbdff500c69afb3ac06
This commit is contained in:
Michel Weststrate
2019-12-11 03:43:31 -08:00
committed by Facebook Github Bot
parent 938f9542ee
commit 382330bfaf
2 changed files with 17 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
export {default as styled, keyframes} from 'react-emotion';
export * from './ui/index';
export {getStringFromErrorLike, textContent} from './utils/index';
export * from './utils/jsonTypes';
export {default as GK} from './fb-stubs/GK';
export {default as createPaste} from './fb-stubs/createPaste';
export {internGraphPOSTAPIRequest, graphQLQuery} from './fb-stubs/user';

16
src/utils/jsonTypes.tsx Normal file
View File

@@ -0,0 +1,16 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
export type JSON = JSONPrimitive | JSONArray | JSONObject;
export type JSONPrimitive = null | boolean | number | string;
export type JSONArray = JSON[];
export type JSONObject = {[key: string]: JSON};