using System; using Bridge; using Bridge.Html5; [External] public class Terminal { public Terminal(object setting) { throw new NotImplementedException(); } internal void on(string v, Action action) { throw new NotImplementedException(); } internal void on(string v, Action action) { throw new NotImplementedException(); } internal void open(HTMLElement termElement) { throw new NotImplementedException(); } internal void write(string v) { throw new NotImplementedException(); } internal void fit() { throw new NotImplementedException(); } } public class TerminalOption { internal int cols; internal bool cursorBlink; internal int rows; internal bool screenKeys; internal bool useStyle; }