using System.Diagnostics.CodeAnalysis; using Jint.Native; namespace Jint.Runtime.Interop; /// /// When implemented, converts a CLR value to a instance /// public interface IObjectConverter { bool TryConvert(Engine engine, object value, [NotNullWhen(true)] out JsValue? result); }