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

6 lines
163 B
TypeScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
import * as t from '@babel/types';
export default function findGlobals(ast: t.Node): {
name: string;
nodes: (t.Identifier | t.ThisExpression)[];
}[];