mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
13 lines
296 B
TypeScript
13 lines
296 B
TypeScript
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
|
|
import { Dialog } from '@ckeditor/ckeditor5-ui';
|
|
/**
|
|
* ObjectShortcut Plugin.
|
|
*
|
|
*
|
|
*/
|
|
export declare class ObjectShortcut extends Plugin {
|
|
static get pluginName(): string;
|
|
get requires(): (typeof Dialog)[];
|
|
init(): void;
|
|
}
|