UNPKG

618 BTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5/**
6 * @module table/plaintableoutput
7 */
8import { Plugin } from 'ckeditor5/src/core';
9import Table from './table';
10/**
11 * The plain table output feature.
12 */
13export default class PlainTableOutput extends Plugin {
14 /**
15 * @inheritDoc
16 */
17 static get pluginName(): 'PlainTableOutput';
18 /**
19 * @inheritDoc
20 */
21 static get requires(): readonly [typeof Table];
22 /**
23 * @inheritDoc
24 */
25 init(): void;
26}