14 lines
331 B
JavaScript
14 lines
331 B
JavaScript
|
// @flow
|
||
|
|
||
|
export * from './functions.any';
|
||
|
|
||
|
/**
|
||
|
* Handles changes to the `disableCallIntegration` setting.
|
||
|
* Noop on web.
|
||
|
*
|
||
|
* @param {boolean} disabled - Whether call integration is disabled or not.
|
||
|
* @returns {void}
|
||
|
*/
|
||
|
export function handleCallIntegrationChange(disabled: boolean) { // eslint-disable-line no-unused-vars
|
||
|
}
|