| 83 | } |
| 84 | |
| 85 | interface SessionOptions { |
| 86 | uid: string; |
| 87 | rows: number; |
| 88 | cols: number; |
| 89 | cwd: string; |
| 90 | shell: string; |
| 91 | shellArgs: string[]; |
| 92 | } |
| 93 | export default class Session extends EventEmitter { |
| 94 | pty: IPty | null; |
| 95 | batcher: DataBatcher | null; |
nothing calls this directly
no outgoing calls
no test coverage detected