diff --git a/packages/babel-helper-hoist-variables/README.md b/packages/babel-helper-hoist-variables/README.md index 1ac18e57c5..a00b8559f6 100644 --- a/packages/babel-helper-hoist-variables/README.md +++ b/packages/babel-helper-hoist-variables/README.md @@ -1,5 +1,17 @@ # @babel/helper-hoist-variables +## Installation + +```sh +npm install @babel/helper-hoist-variables --save +``` + +## API + +```javascript +declare export default hoistVariables(path: NodePath, emit: Function, kind: "var" | "let" = "var"); +``` + ## Usage TODO