Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 1234567891011121314 |
- import amplitude from 'amplitude-js';
-
- export default {
- /**
- * Returns the AmplitudeClient instance.
- *
- * @param {Object} options - Optional parameters.
- * @property {string} options.instanceName - The name of the AmplitudeClient instance.
- * @returns {AmplitudeClient}
- */
- getInstance(options = {}) {
- return amplitude.getInstance(options.instanceName);
- }
- };
|