1 |
|
2 |
|
3 |
|
4 |
|
5 | import type { ViewDocument } from 'ckeditor5/src/engine.js';
|
6 | import type { Normalizer, NormalizerData } from '../normalizer.js';
|
7 |
|
8 |
|
9 |
|
10 | export default class MSWordNormalizer implements Normalizer {
|
11 | readonly document: ViewDocument;
|
12 | readonly hasMultiLevelListPlugin: boolean;
|
13 | |
14 |
|
15 |
|
16 |
|
17 |
|
18 | constructor(document: ViewDocument, hasMultiLevelListPlugin?: boolean);
|
19 | /**
|
20 | * @inheritDoc
|
21 | */
|
22 | isActive(htmlString: string): boolean;
|
23 | /**
|
24 | * @inheritDoc
|
25 | */
|
26 | execute(data: NormalizerData): void;
|
27 | }
|