1 | import { MarkdownPageEvent } from '../events/index.js';
|
2 | import { NavigationItem, RenderTemplate, UrlMapping } from '../types/index.js';
|
3 | import { ProjectReflection, Reflection } from 'typedoc';
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 | export declare class MarkdownRendererEvent extends Event {
|
10 | |
11 |
|
12 |
|
13 | readonly project: ProjectReflection;
|
14 | |
15 |
|
16 |
|
17 | readonly outputDirectory: string;
|
18 | |
19 |
|
20 |
|
21 | urls?: UrlMapping<Reflection>[];
|
22 | |
23 |
|
24 |
|
25 | navigation?: NavigationItem[];
|
26 | |
27 |
|
28 |
|
29 |
|
30 | static readonly BEGIN = "beginRender";
|
31 | |
32 |
|
33 |
|
34 |
|
35 | static readonly END = "endRender";
|
36 | |
37 |
|
38 |
|
39 | constructor(name: string, outputDirectory: string, project: ProjectReflection);
|
40 | /**
|
41 | * @ignore
|
42 | */
|
43 | createPageEvent<Model>(mapping: UrlMapping<Model>): [RenderTemplate<MarkdownPageEvent<Model>>, MarkdownPageEvent<Model>];
|
44 | }
|