mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
6 lines
215 B
TypeScript
6 lines
215 B
TypeScript
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
import ObjectShortcutUI from './object-shortcut.ui';
|
|
export default class ObjectShortcut extends Plugin {
|
|
static get requires(): (typeof ObjectShortcutUI)[];
|
|
}
|