UNPKG

mp-lens

Version:

微信小程序分析工具 (Unused Code, Dependencies, Visualization)

10 lines (9 loc) 432 B
import type { VNode } from 'preact'; import type { ProjectStructure } from '../../analyzer/project-structure'; import { NodeDetailsProps } from '../types'; interface ExtendedNodeDetailsProps extends NodeDetailsProps { fullGraphData: ProjectStructure; onChildNodeSelect: (nodeId: string) => void; } export declare function NodeDetails({ node, fullGraphData, onChildNodeSelect, }: ExtendedNodeDetailsProps): VNode; export {};