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

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