export interface MethodInfo { methodName: string; } export interface ClassInfo { className: string; methods: MethodInfo[]; }