using ReactNative.Bridge; using System; using System.Collections.Generic; using Windows.ApplicationModel.Core; using Windows.UI.Core; namespace React.Native.Npm.Tool.RNReactNativeNpmTool { /// /// A module that allows JS to share data. /// class RNReactNativeNpmToolModule : NativeModuleBase { /// /// Instantiates the . /// internal RNReactNativeNpmToolModule() { } /// /// The name of the native module. /// public override string Name { get { return "RNReactNativeNpmTool"; } } } }