Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

actions.native.ts 554B

1234567891011121314
  1. import { IStore } from '../app/types';
  2. /**
  3. * Action used to start the conference.
  4. *
  5. * @param {Object} options - The config options that override the default ones (if any).
  6. * @param {boolean} _ignoreJoiningInProgress - If true we won't check the joiningInProgress flag.
  7. * @returns {Function}
  8. */
  9. export function joinConference(options?: Object, _ignoreJoiningInProgress = false) {
  10. // eslint-disable-next-line @typescript-eslint/no-empty-function
  11. return async function(_dispatch: IStore['dispatch'], _getState: IStore['getState']) {
  12. };
  13. }