From 106907e605a80b53c29b3980d3b548b432c30ab2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=99=8F=E5=85=B5=E5=85=B5?= Date: Wed, 13 Jun 2018 01:42:10 +0800 Subject: [PATCH] fix: import Parser as type (#8146) [skip ci] --- packages/babel-parser/src/parser/node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/babel-parser/src/parser/node.js b/packages/babel-parser/src/parser/node.js index 422a26a2ae..73223eea85 100644 --- a/packages/babel-parser/src/parser/node.js +++ b/packages/babel-parser/src/parser/node.js @@ -1,6 +1,6 @@ // @flow -import Parser from "./index"; +import type Parser from "./index"; import UtilParser from "./util"; import { SourceLocation, type Position } from "../util/location"; import type { Comment, Node as NodeType, NodeBase } from "../types";