1 /** 2 * The type of the action which signals document editing has stopped or started. 3 * 4 * { 5 * type: SET_DOCUMENT_EDITING_STATUS 6 * } 7 */ 8 export const SET_DOCUMENT_EDITING_STATUS = 'SET_DOCUMENT_EDITING_STATUS'; 9 10 /** 11 * The type of the action which updates the shared document URL. 12 * 13 * { 14 * type: SET_DOCUMENT_URL 15 * } 16 */ 17 export const SET_DOCUMENT_URL = 'SET_DOCUMENT_URL'; 18 19 /** 20 * The type of the action which signals to start or stop editing a shared 21 * document. 22 * 23 * { 24 * type: TOGGLE_DOCUMENT_EDITING 25 * } 26 */ 27 export const TOGGLE_DOCUMENT_EDITING = 'TOGGLE_DOCUMENT_EDITING';