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

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