123456789101112 |
- using Jint.Native;
- namespace Jint.Runtime.Interop
- {
- /// <summary>
- /// When implemented, converts a CLR value to a <see cref="JsValue"/> instance
- /// </summary>
- public interface IObjectConverter
- {
- bool TryConvert(object value, out JsValue result);
- }
- }
|