@types/ckeditor__ckeditor5-table
Version:
TypeScript definitions for @ckeditor/ckeditor5-table
18 lines (15 loc) • 439 B
TypeScript
import { Plugin } from '@ckeditor/ckeditor5-core';
import Table from './table';
/**
* The plain table output feature.
*/
export default class PlainTableOutput extends Plugin {
static readonly pluginName: 'PlainTableOutput';
static readonly requires: [typeof Table];
init(): void;
}
declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
interface Plugins {
PlainTableOutput: PlainTableOutput;
}
}