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.

fixDeviceID.web.ts 320B

1234567891011
  1. import { AmplitudeClient } from 'amplitude-js';
  2. /**
  3. * Custom logic for setting the correct device id.
  4. *
  5. * @param {AmplitudeClient} _amplitude - The amplitude instance.
  6. * @returns {void}
  7. */
  8. export function fixDeviceID(_amplitude: AmplitudeClient): Promise<any> {
  9. return new Promise(resolve => resolve(true));
  10. }