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

functions.web.js 331B

12345678910111213
  1. // @flow
  2. export * from './functions.any';
  3. /**
  4. * Handles changes to the `disableCallIntegration` setting.
  5. * Noop on web.
  6. *
  7. * @param {boolean} disabled - Whether call integration is disabled or not.
  8. * @returns {void}
  9. */
  10. export function handleCallIntegrationChange(disabled: boolean) { // eslint-disable-line no-unused-vars
  11. }