UNPKG

158 BTypeScriptView Raw
1import * as t from '@babel/types';
2export default function findGlobals(ast: t.Node): {
3 name: string;
4 nodes: (t.Identifier | t.ThisExpression)[];
5}[];