@types/ckeditor__ckeditor5-table
Version:
TypeScript definitions for @ckeditor/ckeditor5-table
15 lines (12 loc) • 395 B
TypeScript
import { Plugin } from '@ckeditor/ckeditor5-core';
import TableUtils from './tableutils';
export default class TableEditing extends Plugin {
static readonly pluginName: 'TableEditing';
static readonly requires: [typeof TableUtils];
init(): void;
}
declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
interface Plugins {
TableEditing: TableEditing;
}
}