1 | import { RendererComponent } from '../components';
|
2 | import { PageEvent } from '../events';
|
3 | export declare class PrettyPrintPlugin extends RendererComponent {
|
4 | static IGNORED_TAGS: {
|
5 | area: boolean;
|
6 | base: boolean;
|
7 | br: boolean;
|
8 | wbr: boolean;
|
9 | col: boolean;
|
10 | command: boolean;
|
11 | embed: boolean;
|
12 | hr: boolean;
|
13 | img: boolean;
|
14 | input: boolean;
|
15 | link: boolean;
|
16 | meta: boolean;
|
17 | param: boolean;
|
18 | source: boolean;
|
19 | };
|
20 | static PRE_TAGS: {
|
21 | pre: boolean;
|
22 | code: boolean;
|
23 | textarea: boolean;
|
24 | script: boolean;
|
25 | style: boolean;
|
26 | };
|
27 | initialize(): void;
|
28 | onRendererEndPage(event: PageEvent): void;
|
29 | }
|