1 | import { SourceFile, SourceDirectory } from '../sources/index';
|
2 | import { Reflection, ReflectionKind } from './abstract';
|
3 | import { ContainerReflection } from './container';
|
4 | export declare class ProjectReflection extends ContainerReflection {
|
5 | reflections: {
|
6 | [id: number]: Reflection;
|
7 | };
|
8 | symbolMapping: {
|
9 | [symbolId: number]: number;
|
10 | };
|
11 | directory: SourceDirectory;
|
12 | files: SourceFile[];
|
13 | name: string;
|
14 | readme?: string;
|
15 | packageInfo: any;
|
16 | constructor(name: string);
|
17 | isProject(): boolean;
|
18 | getReflectionsByKind(kind: ReflectionKind): Reflection[];
|
19 | findReflectionByName(arg: string | string[]): Reflection | undefined;
|
20 | }
|