Type Alias BookmarksCreateEvent
Type Alias
Type Signature
Example
Get the list of created bookmarks.
instance.addEventListener("bookmarks.create", (bookmarks: BookmarksCreateEvent) => {
console.log(bookmarks.toJS());
});
Nutrient Web SDK
Get the list of created bookmarks.
instance.addEventListener("bookmarks.create", (bookmarks: BookmarksCreateEvent) => {
console.log(bookmarks.toJS());
});
This event is emitted when new bookmarks are created. The event includes the list of created bookmarks.