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:
Peter van der Zee 2018-01-30 04:29:06 -08:00 committed by Facebook Github Bot
parent 4b7371d732
commit 51cb4df06f
1 changed files with 1 additions and 0 deletions

View File

@ -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>,