您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

actions.native.js 291B

123456789101112131415
  1. // @flow
  2. import { hideDialog } from '../base/dialog';
  3. import { RemoteVideoMenu } from './components/native';
  4. /**
  5. * Hides the remote video menu.
  6. *
  7. * @returns {Function}
  8. */
  9. export function hideRemoteVideoMenu() {
  10. return hideDialog(RemoteVideoMenu);
  11. }
  12. export * from './actions.any';