using Jint.Native; namespace Jint.Runtime.Interop { /// /// When implemented, converts a CLR value to a instance /// public interface IObjectConverter { bool TryConvert(object value, out JsValue result); } }