選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

actions.web.ts 410B

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