@ckeditor/ckeditor5-comments
Version:
Collaborative comments feature for CKEditor 5.
13 lines (12 loc) • 351 B
TypeScript
/**
* @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
*/
/**
* Returns marker name split to group and id.
*/
export declare function splitMarkerName(name: string): {
group: string;
id: string;
part: string;
};