using Newtonsoft.Json.Linq; using ReactNative.Bridge; using System; using System.Collections.Generic; using Windows.ApplicationModel.Core; using Windows.UI.Core; namespace Com.Reactlibrary.RNViewShot { /// /// A module that allows JS to share data. /// class RNViewShotModule : NativeModuleBase { /// /// Instantiates the . /// internal RNViewShotModule() { } /// /// The name of the native module. /// public override string Name { get { return "RNViewShot"; } } [ReactMethod] public void takeSnapshot(int tag, JObject options, IPromise promise) {} } }