UNPKG

454 BTypeScriptView Raw
1import { Plugin } from "@ckeditor/ckeditor5-core";
2import BlockQuoteEditing from "./blockquoteediting";
3import BlockQuoteUI from "./blockquoteui";
4
5export default class BlockQuote extends Plugin {
6 static readonly requires: [typeof BlockQuoteEditing, typeof BlockQuoteUI];
7 static readonly pluginName: "BlockQuote";
8}
9
10declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
11 interface Plugins {
12 BlockQuote: BlockQuote;
13 }
14}