Interface ClassInfo

interface ClassInfo {
    name: string;
    filePath: string;
    methods: MethodInfo[];
    fields: FieldInfo[];
    sourceFile?: SourceFile;
}

Properties

name: string
filePath: string
methods: MethodInfo[]
fields: FieldInfo[]
sourceFile?: SourceFile