Summary: _typescript_

Reviewed By: priteshrnandgaonkar

Differential Revision: D16807180

fbshipit-source-id: dcba794351eee69c0574dc224cf7bd2732bea447
This commit is contained in:
Daniel Büchele
2019-08-20 05:40:31 -07:00
committed by Facebook Github Bot
parent 62a204bdbe
commit 4c4169063d
22 changed files with 501 additions and 473 deletions

View File

@@ -17,12 +17,14 @@ import Select from '../ui/components/Select';
import ErrorBlock from '../ui/components/ErrorBlock';
import FlexColumn from '../ui/components/FlexColumn';
import SearchableTable from '../ui/components/searchable/SearchableTable';
import TableHighlightedRows from '../ui/components/table/types';
import TableRows from '../ui/components/table/types';
import TableColumnSizes from '../ui/components/table/types';
import TableColumns from '../ui/components/table/types';
import TableColumnOrderVal from '../ui/components/table/types';
import TableBodyRow from '../ui/components/table/types';
import {
TableHighlightedRows,
TableRows,
TableColumnSizes,
TableColumns,
TableColumnOrderVal,
TableBodyRow,
} from '../ui/components/table/types';
import DetailSidebar from '../chrome/DetailSidebar';
import {FlipperPlugin} from '../plugin';
import textContent from '../utils/textContent';

View File

@@ -5,8 +5,7 @@
* @format
*/
import type {PluginClient} from '../../plugin.tsx';
import type {Value} from '../../ui/components/table/TypeBasedValueRenderer';
import type {PluginClient, Value} from 'flipper';
type ClientCall<Params, Response> = Params => Promise<Response>;

View File

@@ -25,10 +25,7 @@ import {
ManagedDataInspector,
} from 'flipper';
import {Component} from 'react';
import type {
TableBodyRow,
TableRowSortOrder,
} from '../../ui/components/table/types';
import type {TableBodyRow, TableRowSortOrder} from 'flipper';
import {FlipperPlugin} from 'flipper';
import {DatabaseClient} from './ClientProtocol';
import {renderValue} from 'flipper';