Total Complexity | 2 |
Complexity/F | 1 |
Lines of Code | 16 |
Function Count | 2 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /* |
||
20 | import PartDBLabelUI from "./PartDBLabelUI"; |
||
21 | import PartDBLabelEditing from "./PartDBLabelEditing"; |
||
22 | |||
23 | import "./PartDBLabel.css"; |
||
24 | |||
25 | import Plugin from "@ckeditor/ckeditor5-core/src/plugin"; |
||
26 | |||
27 | export default class PartDBLabel extends Plugin { |
||
28 | static get requires() { |
||
29 | return [PartDBLabelUI, PartDBLabelEditing]; |
||
30 | } |
||
31 | |||
32 | static get pluginName() { |
||
33 | return 'PartDBLabel'; |
||
34 | } |
||
35 | } |