babel-type-scopes
Utils for looking up and working with Flow & TypeScript scopes in Babel
; ; // true | false; // (Path) // { foo: { kind, path, id }, bar: { kind, path, id } } // { kind, path, id }
Installation
yarn add babel-type-scopes
API
isTypeScope(path: Path) => boolean
Check if a path creates a type scope.
getClosestTypeScope(path: Path) => Path
Find the closest path to a type scope.
getOwnTypeBindings(path: Path) => Bindings
Find the closest path to a type scope.
getTypeBinding(path: Path) => Binding
Search for a binding in the current scope and parent scopes.
Types
Binding
type Binding = kind: 'import' | 'declaration' | 'expression' | 'param' path: Path id: Path;
Bindings
type Bindings = name: string: Binding ;