mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 17:19:29 +08:00
8 lines
300 B
Text
8 lines
300 B
Text
import { Node } from 'estree';
|
|
import { Scope, extract_names, extract_identifiers } from 'periscopic';
|
|
export declare function create_scopes(expression: Node): {
|
|
map: WeakMap<Node, Scope>;
|
|
scope: Scope;
|
|
globals: Map<string, Node>;
|
|
};
|
|
export { Scope, extract_names, extract_identifiers };
|