You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }