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