Adding the deleted functions in application reducer

Summary:
Bug:

{F175972811}

Reviewed By: passy

Differential Revision: D16738491

fbshipit-source-id: 0f2675ed6d054d33ee9dbc7c4db9c34a2379abcf
This commit is contained in:
Pritesh Nandgaonkar
2019-08-12 05:14:16 -07:00
committed by Facebook Github Bot
parent 6c7aeef7ed
commit 47197f9552

View File

@@ -7,7 +7,8 @@
import {remote} from 'electron';
import uuidv1 from 'uuid/v1';
import {ReactElement} from 'react';
import CancellableExportStatus from '../chrome/CancellableExportStatus';
export const ACTIVE_SHEET_PLUGIN_SHEET: 'PLUGIN_SHEET' = 'PLUGIN_SHEET';
export const ACTIVE_SHEET_BUG_REPORTER: 'BUG_REPORTER' = 'BUG_REPORTER';
export const ACTIVE_SHEET_PLUGIN_DEBUGGER: 'PLUGIN_DEBUGGER' =
@@ -217,6 +218,17 @@ export const toggleAction = (
payload,
});
export const unsetShare = (): Action => ({
type: UNSET_SHARE,
});
export const setExportStatusComponent = (
payload: ReactElement<typeof CancellableExportStatus>,
): Action => ({
type: SET_EXPORT_STATUS_MESSAGE,
payload,
});
export const setSelectPluginsToExportActiveSheet = (
payload: ShareType,
): Action => ({