9 lines
143 B
JavaScript
9 lines
143 B
JavaScript
// @flow
|
|
import * as ACTIONS from 'constants/action_types';
|
|
|
|
declare type ReportContentState = {
|
|
isReporting: boolean,
|
|
error: string,
|
|
};
|
|
|
|
|