mirror of https://github.com/status-im/metro.git
Fix missing `Ast` flow type
Summary: The type was not imported and this escaped the attention of Flow somehow. Reviewed By: davidaurelio Differential Revision: D6834298 fbshipit-source-id: 96f754d5aae9fda661cb18bbbb30ccfd033598a1
This commit is contained in:
parent
4b7371d732
commit
51cb4df06f
|
@ -16,6 +16,7 @@ const {traverse} = require('babel-core');
|
||||||
const prettyPrint = require('babel-generator').default;
|
const prettyPrint = require('babel-generator').default;
|
||||||
|
|
||||||
import type {TransformResultDependency} from '../types.flow';
|
import type {TransformResultDependency} from '../types.flow';
|
||||||
|
import type {Ast} from 'babel-core';
|
||||||
|
|
||||||
type Context = {
|
type Context = {
|
||||||
oldToNewIndex: Map<number, number>,
|
oldToNewIndex: Map<number, number>,
|
||||||
|
|
Loading…
Reference in New Issue