Total Complexity | 2 |
Complexity/F | 2 |
Lines of Code | 8 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import KeyValueForm from './nodeviews/KeyValueForm'; |
||
2 | |||
3 | export default function initializePublicAPI() { |
||
4 | if (!window.Prosemirror.classes) { |
||
5 | window.Prosemirror.classes = {}; |
||
6 | } |
||
7 | window.Prosemirror.classes.KeyValueForm = KeyValueForm; |
||
8 | } |
||
9 |