mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 15:17:50 +00:00
12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
import { AmplitudeClient } from 'amplitude-js';
|
|
|
|
/**
|
|
* Custom logic for setting the correct device id.
|
|
*
|
|
* @param {AmplitudeClient} _amplitude - The amplitude instance.
|
|
* @returns {void}
|
|
*/
|
|
export function fixDeviceID(_amplitude: AmplitudeClient): Promise<any> {
|
|
return new Promise(resolve => resolve(true));
|
|
}
|