You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The editor exports a hand full of shorthands as part of it's external API methods. These shorthands are missing in the type definitions. This leads to an unnecessarily higher barrier of entry.
For example, in the documentation, saving data is multiple times describe with editor.save(). This leads to a type error in typescript since without the shorthand it would need to be editor.saver.save().
The text was updated successfully, but these errors were encountered:
The editor exports a hand full of shorthands as part of it's external API methods. These shorthands are missing in the type definitions. This leads to an unnecessarily higher barrier of entry.
For example, in the documentation, saving data is multiple times describe with
editor.save()
. This leads to a type error in typescript since without the shorthand it would need to beeditor.saver.save()
.The text was updated successfully, but these errors were encountered: