您最多选择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. }