UNPKG

813 BTypeScriptView Raw
1import { Application } from '../application';
2import { Theme } from './theme';
3import { ProjectReflection } from '../models/reflections/project';
4import { RendererComponent } from './components';
5import { ChildableComponent } from '../utils/component';
6export declare class Renderer extends ChildableComponent<Application, RendererComponent> {
7 theme?: Theme;
8 themeName: string;
9 disableOutputCheck: boolean;
10 gaID: string;
11 gaSite: string;
12 hideGenerator: boolean;
13 entryPoint: string;
14 toc: string[];
15 initialize(): void;
16 render(project: ProjectReflection, outputDirectory: string): void;
17 private renderDocument;
18 private prepareTheme;
19 private prepareOutputDirectory;
20 static getThemeDirectory(): string;
21 static getDefaultTheme(): string;
22}
23import './plugins';