namespace ScriptCs.Contracts { using System.Collections.Generic; public interface IRepl : IScriptExecutor { Dictionary Commands { get; } string Buffer { get; } } }