Get instance
{
article: {
create: () => void { /* creates a new article */ },
open: (uuid) => void { /* open article with passed uuid */ },
copy: (uuid) => void { /* opens a modal to make a copy of chosen article */ },
preview: (uuid) => void { /* opens a preview of chosen article */ }
},
config: {
get: () => Promise { /* get current writer configuration */ },
core: () => Object { /* get current writer core configuration */ },
additional: () => Object { /* get current writer configuration */ }
},
loadableComponents: {
config: (name) => Object { /* get the configuration for that loadable component */},
config: () => Array { /* get all loadable components config */}
}
}Last updated