UNPKG

@wordpress/editor

Version:
27 lines (25 loc) 659 B
/** * WordPress dependencies */ import RNReactNativeGutenbergBridge from '@wordpress/react-native-bridge'; export * from './actions.js'; /** * Returns an action object that enables or disables post title selection. * * @param {boolean} [isSelected=true] Whether post title is currently selected. * * @return {Object} Action object. */ export function togglePostTitleSelection(isSelected = true) { return { type: 'TOGGLE_POST_TITLE_SELECTION', isSelected }; } /** * Action that autosaves the post. */ export const autosave = () => () => { RNReactNativeGutenbergBridge.editorDidAutosave(); }; //# sourceMappingURL=actions.native.js.map