mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a4ebd87a81
Summary: This diff fixes an error affecting of loading of Ads Manager iOS app Changelog: [Internal] Reviewed By: fkgozali Differential Revision: D17958919 fbshipit-source-id: d87f169954d891ee2fcb1143f1985ea3811b949c
24 lines
587 B
JavaScript
24 lines
587 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {TurboModule} from '../../TurboModule/RCTExport';
|
|
import * as TurboModuleRegistry from '../../TurboModule/TurboModuleRegistry';
|
|
|
|
/**
|
|
* Native Module used for playing sounds in native platform.
|
|
*/
|
|
export interface Spec extends TurboModule {
|
|
+playTouchSound: () => void;
|
|
}
|
|
|
|
export default (TurboModuleRegistry.get<Spec>('SoundManager'): ?Spec);
|