2015-11-26 21:51:59 +08:00

22 lines
395 B
JavaScript

/**
* Created by nuintun on 2015/11/24.
*/
'use strict';
module.exports = function (Terminal){
/**
* close
*/
Terminal.prototype.close = function (){
this.lines = [];
this.screen = '';
this.screenLines = [];
this.readable = false;
this.writable = false;
this.write = function (){};
this.ondata = function (){};
this.ontitle = function (){};
};
};