line_push/node_modules/with/lib/globals.d.ts
2022-07-17 13:16:16 +08:00

6 lines
158 B
TypeScript

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