globals.d.ts 158 B

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