@ckeditor/ckeditor5-link
Version:
Link feature for CKEditor 5.
19 lines (18 loc) • 784 B
TypeScript
/**
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* @module link
*/
export { default as Link } from './link';
export { default as LinkEditing } from './linkediting';
export { default as LinkUI } from './linkui';
export { default as LinkImage } from './linkimage';
export { default as LinkImageEditing } from './linkimageediting';
export { default as LinkImageUI } from './linkimageui';
export { default as AutoLink } from './autolink';
export { LinkConfig, type LinkDecoratorDefinition } from './linkconfig';
export { default as LinkCommand } from './linkcommand';
export { default as UnlinkCommand } from './unlinkcommand';
import './augmentation';