Files
Lab4/33/node_modules/with/lib/globals.d.ts
MishaBagger b6c10cc93f MACHIN
2023-10-25 09:15:21 +03: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)[];
}[];