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