devsite/node_modules/with/lib/globals.d.ts

6 lines
158 B
TypeScript
Raw Normal View History

2024-07-08 01:49:38 +00:00
import * as t from '@babel/types';
export default function findGlobals(ast: t.Node): {
name: string;
nodes: (t.Identifier | t.ThisExpression)[];
}[];