aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions/ui.ts
blob: f496c5c07f4c9c27a2d36a4cc7a478bf8e9cf8b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import PropTypes from 'prop-types';
import { ActionDefinitions } from './lib/actions';

export default <ActionDefinitions>{
  openSettings: {
    path: PropTypes.string,
  },
  openDownloads: {
    path: PropTypes.string,
  },
  closeSettings: {},
  toggleServiceUpdatedInfoBar: {
    visible: PropTypes.bool,
  },
};