您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

actions.web.js 420B

123456789101112131415161718192021
  1. // @flow
  2. import { SET_DISABLE_BUTTON } from './actionTypes';
  3. export * from './actions.any';
  4. /**
  5. * Disabled share video button.
  6. *
  7. * @param {boolean} disabled - The current state of the share video button.
  8. * @returns {{
  9. * type: SET_DISABLE_BUTTON,
  10. * disabled: boolean
  11. * }}
  12. */
  13. export function setDisableButton(disabled: boolean) {
  14. return {
  15. type: SET_DISABLE_BUTTON,
  16. disabled
  17. };
  18. }