Drop redundant type re-export

Reviewed By: mjesun

Differential Revision: D6711235

fbshipit-source-id: 0e5cb6c22ba4000589f8b97dcfb340297aea5a41
This commit is contained in:
Peter van der Zee 2018-01-12 04:37:12 -08:00 committed by Facebook Github Bot
parent fe443193c3
commit 199b51892b
2 changed files with 1 additions and 3 deletions

View File

@ -16,8 +16,6 @@ import type {BabelSourceMap} from 'babel-core';
import type {Console} from 'console';
import type {FBSourceMap, MetroSourceMap} from 'metro-source-map';
export type {Transformer} from '../JSTransformer/worker';
export type BuildResult = {|
...GraphResult,
prependedScripts: $ReadOnlyArray<Module>,

View File

@ -27,12 +27,12 @@ const path = require('path');
const {isAssetTypeAnImage} = require('../../Bundler/util');
const {basename} = require('path');
import type {Transformer} from '../../JSTransformer/worker';
import type {HasteImpl} from '../../node-haste/Module';
import type {
ImageSize,
TransformedCodeFile,
TransformedSourceFile,
Transformer,
TransformResult,
TransformVariants,
} from '../types.flow';