-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathindex.ts
More file actions
29 lines (26 loc) · 1.6 KB
/
index.ts
File metadata and controls
29 lines (26 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module html-support
*/
export { default as GeneralHtmlSupport } from './generalhtmlsupport.js';
export { default as DataFilter } from './datafilter.js';
export { default as DataSchema, type DataSchemaBlockElementDefinition } from './dataschema.js';
export { default as HtmlComment } from './htmlcomment.js';
export { default as FullPage } from './fullpage.js';
export { default as HtmlPageDataProcessor } from './htmlpagedataprocessor.js';
export { default as EmptyBlocks } from './emptyblocks.js';
export type { GeneralHtmlSupportConfig } from './generalhtmlsupportconfig.js';
export type { default as CodeBlockElementSupport } from './integrations/codeblock.js';
export type { default as CustomElementSupport } from './integrations/customelement.js';
export type { default as ListElementSupport } from './integrations/list.js';
export type { default as DualContentModelElementSupport } from './integrations/dualcontent.js';
export type { default as HeadingElementSupport } from './integrations/heading.js';
export type { default as ImageElementSupport } from './integrations/image.js';
export type { default as MediaEmbedElementSupport } from './integrations/mediaembed.js';
export type { default as ScriptElementSupport } from './integrations/script.js';
export type { default as StyleElementSupport } from './integrations/style.js';
export type { default as TableElementSupport } from './integrations/table.js';
import './augmentation.js';