@atlaskit/editor-plugin-synced-block
Version:
SyncedBlock plugin for @atlaskit/editor-core
9 lines • 425 B
JavaScript
export var flushBodiedSyncBlocks = function flushBodiedSyncBlocks(syncBlockStore) {
return syncBlockStore.sourceManager.flush();
};
export var flushSyncBlocks = function flushSyncBlocks(syncBlockStore) {
return syncBlockStore.referenceManager.flush();
};
export var discardUnpublishedSyncBlocks = function discardUnpublishedSyncBlocks(syncBlockStore) {
return syncBlockStore.sourceManager.discardUnpublishedBlocks();
};