8 lines
402 B
TypeScript
8 lines
402 B
TypeScript
import type { ProxyNativeModule } from './NativeModulesProxy.types';
|
|
/**
|
|
* @deprecated `NativeModulesProxy` is deprecated and might be removed in the future releases.
|
|
* Use `requireNativeModule` or `requireOptionalNativeModule` instead.
|
|
*/
|
|
declare const NativeModulesProxy: Record<string, ProxyNativeModule>;
|
|
export default NativeModulesProxy;
|
|
//# sourceMappingURL=NativeModulesProxy.native.d.ts.map
|