6 lines
183 B
TypeScript
6 lines
183 B
TypeScript
import { ProxyNativeModule } from './NativeModulesProxy.types';
|
|
declare const NativeModulesProxy: {
|
|
[moduleName: string]: ProxyNativeModule;
|
|
};
|
|
export default NativeModulesProxy;
|