mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 04:19:30 +08:00
6 lines
145 B
Text
6 lines
145 B
Text
import { Node } from 'estree';
|
|
export default function flatten_reference(node: Node): {
|
|
name: string;
|
|
nodes: any[];
|
|
parts: any[];
|
|
};
|