UNPKG

sicua

Version:

A tool for analyzing project structure and dependencies

14 lines (13 loc) 271 B
/** * Types for function analysis */ export interface FunctionData { componentName: string; functionName: string; params: string[]; returnType: string; body: string; dependencies: string[]; calledFunctions: string[]; isAsync: boolean; }